Django-NotesApp/project/api/urls.py

8 lines
181 B
Python
Raw Normal View History

2023-02-24 00:13:44 +08:00
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
2023-02-25 17:57:38 +08:00
path('', include('notes.urls')),
path('accounts/', include('djoser.urls')),
2023-02-24 00:13:44 +08:00
]