Gallery-Archivist/backend/api/urls.py

8 lines
158 B
Python
Raw Normal View History

2025-01-28 22:01:58 +01:00
from django.urls import path, include
urlpatterns = [
2025-02-08 17:36:36 +01:00
path("auth/", include("api.authentication.urls")),
2025-02-08 18:11:04 +01:00
path("user/", include("api.user.urls")),
2025-01-28 22:01:58 +01:00
]