Gallery-Archivist/backend/api/user/urls.py

7 lines
141 B
Python

from django.urls import path
from .views import ProfileView
urlpatterns = [
path("profile/", ProfileView.as_view(), name="profile"),
]