Ivy-Backend/ivy/accounts/urls.py
2023-02-28 22:16:45 +08:00

7 lines
182 B
Python

from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('', include('djoser.urls')),
path('', include('djoser.urls.authtoken'))
]