DRF_Template/backend/accounts/urls.py

8 lines
170 B
Python
Raw Normal View History

2024-01-06 12:13:39 +08:00
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('', include('djoser.urls')),
path('', include('djoser.urls.jwt')),
]