7 lines
158 B
Python
7 lines
158 B
Python
from django.urls import path, include
|
|
|
|
|
|
urlpatterns = [
|
|
path("auth/", include("api.authentication.urls")),
|
|
path("user/", include("api.user.urls")),
|
|
]
|