DRF_Template/backend/config/urls.py

6 lines
99 B
Python
Raw Normal View History

2024-10-31 00:33:13 +08:00
from django.urls import include, path
2024-01-06 12:13:39 +08:00
urlpatterns = [
path("api/v1/", include("api.urls")),
2024-01-06 12:13:39 +08:00
]