Files
Hulumath-Web/backend/progression/urls.py
T
Jacky 1f98f7152d
CI / test (push) Failing after 1m31s
v0.2 Preview: Construction Plan.
2026-08-08 21:25:27 +08:00

9 lines
171 B
Python

from django.urls import path
from .views import ProgressionProfileView
urlpatterns = [
path("me/", ProgressionProfileView.as_view(), name="progression-profile"),
]