7 lines
177 B
Python
7 lines
177 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path("v1/", include('dj_rest_auth.urls')),
|
|
path('v1/registration/', include('dj_rest_auth.registration.urls')),
|
|
]
|