Django-NotesApp/project/api/urls.py

8 lines
183 B
Python
Raw Permalink 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')),
2023-02-25 19:10:23 +08:00
path('accounts/', include('accounts.urls')),
2023-02-24 00:13:44 +08:00
]