Feat: [#64] 노코드툴 url 설정

This commit is contained in:
sm4640
2025-06-05 18:33:26 +09:00
parent 6321c1bf34
commit 13fb4d3743

11
nocodetools/urls.py Normal file
View File

@@ -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()),
]