Files
CyberPanel/cloudAPI/urls.py
2024-08-04 23:54:32 +05:00

8 lines
175 B
Python
Executable File

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'),
]