Files
webstatus/status/urls.py
2025-07-31 21:21:45 +08:00

7 lines
174 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('api/services/', views.get_services, name='get_services'),
]