5 lines
103 B
Python
5 lines
103 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('v1/auth/', include('api.auth.urls'))
|
|
] |