From 13fb4d37438d75ff29d24f57a469082bc6eee0fe Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 5 Jun 2025 18:33:26 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#64]=20=EB=85=B8=EC=BD=94?= =?UTF-8?q?=EB=93=9C=ED=88=B4=20url=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nocodetools/urls.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nocodetools/urls.py diff --git a/nocodetools/urls.py b/nocodetools/urls.py new file mode 100644 index 0000000..83fcb97 --- /dev/null +++ b/nocodetools/urls.py @@ -0,0 +1,11 @@ +from django.urls import path + +from .views import * + + +app_name = 'nocodetools' + +urlpatterns = [ + path('', NoCodeToolAPIView.as_view()), + path('working/', NocodeToolWorkingAPIView.as_view()), +] \ No newline at end of file