Files
CyberPanel/examplePlugin/urls.py
2025-06-15 01:10:08 +05:00

8 lines
126 B
Python

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