Files
CyberPanel/examplePlugin/urls.py

7 lines
124 B
Python
Raw Permalink Normal View History

2019-10-08 10:53:02 -04:00
from django.conf.urls import url
import views
urlpatterns = [
url(r'^$', views.examplePlugin, name='examplePlugin'),
]