Files
CyberPanel/examplePlugin/urls.py
Michael Ramsey bd71b39d31 push changes
2019-10-08 10:53:02 -04:00

7 lines
124 B
Python

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