10 lines
307 B
Python
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")),
|
|
]
|