Files
CyberPanel/examplePlugin/urls.py

8 lines
126 B
Python
Raw Normal View History

2024-08-04 23:54:32 +05:00
from django.urls import path
2019-12-12 11:04:05 +05:00
from . import views
2018-10-05 00:00:06 +05:00
urlpatterns = [
2024-08-04 23:54:32 +05:00
path('', views.examplePlugin, name='examplePlugin'),
]
2024-08-04 23:54:32 +05:00