Files
pyGoEdge-UserPanel/plans/urls.py
2025-11-18 03:36:49 +08:00

6 lines
112 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.list_plans, name='list'),
]