rakib72642's picture
create django structure
fe9d3dc
raw
history blame contribute delete
224 Bytes
from django.urls import path
from myapp import views
urlpatterns = [
path('status/', views.StatusView.as_view(), name='StatusView'),
path('tech/', views.TechView.as_view(), name='tech'),
# Add more paths here
]