Gallery-Archivist/backend/api/urls.py

11 lines
307 B
Python
Raw Normal View History

2025-01-28 22:01:58 +01:00
from django.urls import path, include
urlpatterns = [
2025-02-10 10:18:22 +01:00
path("schema/", include("api.schema.urls")),
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-02-10 10:16:26 +01:00
path("posts/", include("api.posts.urls")),
2025-02-12 13:23:35 +01:00
path("creators/", include("api.creators.urls")),
2025-01-28 22:01:58 +01:00
]