| 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 | |
| ] | |
| 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 | |
| ] | |