Files
CyberPanel/examplePlugin/urls.py
2018-10-05 00:00:06 +05:00

7 lines
124 B
Python

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