Files
CyberPanel/cloudAPI/urls.py
2025-08-01 14:56:30 +05:00

8 lines
175 B
Python

from django.urls import re_path
from . import views
urlpatterns = [
re_path(r'^$', views.router, name='router'),
re_path(r'^access$', views.access, name='access'),
]