Files
SkillHub/backend/project/api/urls.py
T
2024-04-02 03:26:13 +03:00

13 lines
237 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"),
)
]