Files
CyberPanel/examplePlugin/urls.py
2020-08-11 02:13:50 -04:00

7 lines
131 B
Python
Executable File

from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.examplePlugin, name='examplePlugin'),
]