Files
CyberPanel/examplePlugin/urls.py
2019-06-08 21:41:43 +00:00

7 lines
124 B
Python
Executable File

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