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

8 lines
141 B
Python
Raw Permalink Normal View History

2025-01-28 22:16:56 +01:00
from django.urls import path
2025-02-08 17:58:07 +01:00
from .views import ProfileView
2025-01-28 22:16:56 +01:00
urlpatterns = [
path("profile/", ProfileView.as_view(), name="profile"),
]