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