izaac/core/urls.py
Jakub K 81dc1e4817
All checks were successful
continuous-integration/drone Build is passing
IZAAC_BASE - urls
2023-11-11 21:33:58 +01:00

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')),
]