Files
SkillHub/backend/project/api/urls.py
T
2024-04-02 11:58:55 +03:00

17 lines
325 B
Python

from django.urls import include, path
urlpatterns = [
path(
"users/",
include("api.users.urls", namespace="users"),
),
path(
"events/",
include("api.events.urls", namespace="events"),
),
path(
"trees/",
include("api.tree.urls", namespace="trees"),
)
]