mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2025-01-19 10:53:00 +08:00
6 lines
99 B
Python
6 lines
99 B
Python
|
from django.urls import path, include
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('api/v1/', include('api.urls')),
|
||
|
]
|