9 lines
254 B
Python
9 lines
254 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")),
|
|
]
|