File size: 202 Bytes
fe9d3dc
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from django.urls import path
from .views import StatusView, TechView

urlpatterns = [
    path('status/', StatusView.as_view(), name='StatusView'),
    path('tech/', TechView.as_view(), name='tech'),
]