Files
CyberPanel/cloudAPI/urls.py

8 lines
175 B
Python
Raw Normal View History

2024-08-04 23:54:32 +05:00
from django.urls import re_path
2019-12-12 11:04:05 +05:00
from . import views
2018-11-08 13:19:36 +05:00
urlpatterns = [
2024-08-04 23:54:32 +05:00
re_path(r'^$', views.router, name='router'),
re_path(r'^access$', views.access, name='access'),
]