File size: 224 Bytes
fe9d3dc
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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
]