Gallery-Archivist/backend/api/urls.py
2025-02-12 13:23:35 +01:00

10 lines
307 B
Python

from django.urls import path, include
urlpatterns = [
path("schema/", include("api.schema.urls")),
path("auth/", include("api.authentication.urls")),
path("user/", include("api.user.urls")),
path("posts/", include("api.posts.urls")),
path("creators/", include("api.creators.urls")),
]