mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2025-07-03 02:44:17 +08:00
7 lines
181 B
Python
7 lines
181 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('', include('notes.urls')),
|
|
path('accounts/', include('djoser.urls')),
|
|
]
|