Files
webstatus/status/urls.py

7 lines
174 B
Python
Raw Normal View History

2025-07-31 21:21:45 +08:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('api/services/', views.get_services, name='get_services'),
]