[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
+9
View File
@@ -0,0 +1,9 @@
from django.urls import path
from api.events.views import CreateEventView
app_name = "events"
urlpatterns = [
path("create/", CreateEventView.as_view(), name="create"),
]