Files
CyberPanel/examplePlugin/urls.py

8 lines
126 B
Python
Raw Normal View History

2025-08-01 14:56:30 +05:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.examplePlugin, name='examplePlugin'),
]