diff --git a/backend/api/user/urls.py b/backend/api/user/urls.py new file mode 100644 index 0000000..1c5510c --- /dev/null +++ b/backend/api/user/urls.py @@ -0,0 +1,7 @@ +from django.urls import path + +from .views import ProfileView + +urlpatterns = [ + path("profile/", ProfileView.as_view(), name="profile"), +]