mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
5 lines
99 B
Python
5 lines
99 B
Python
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("api/v1/", include("api.urls")),
|
|
]
|