11 lines
197 B
Python
11 lines
197 B
Python
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
|
|
app_name = 'nocodetools'
|
|
|
|
urlpatterns = [
|
|
path('', NoCodeToolAPIView.as_view()),
|
|
path('working/', NocodeToolWorkingAPIView.as_view()),
|
|
] |