mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-19 01:23:02 +08:00
5 lines
99 B
Python
5 lines
99 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path("api/v1/", include("api.urls")),
|
|
]
|