StudE-Backend/stude/accounts/urls.py

8 lines
176 B
Python
Raw Normal View History

2023-06-26 19:10:04 +08:00
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('', include('djoser.urls')),
2023-06-26 22:06:05 +08:00
path('', include('djoser.urls.authtoken')),
2023-06-26 19:10:04 +08:00
]