[feat] add user and add event

This commit is contained in:
Data-Name-ID
2024-04-02 03:26:13 +03:00
parent 52233d0028
commit 9f233eb163
22 changed files with 260 additions and 1 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
from django.urls import include, path
urlpatterns = []
urlpatterns = [
path(
"users/",
include("api.users.urls", namespace="users"),
),
path(
"events/",
include("api.events.urls", namespace="events"),
)
]