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

7 lines
127 B
Python
Executable File

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