Files
CyberPanel/pluginHolder/urls.py
2024-08-07 01:39:22 +05:00

7 lines
126 B
Python
Executable File

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