Files
CyberPanel/examplePlugin/urls.py

7 lines
124 B
Python
Raw Normal View History

2018-10-05 00:00:06 +05:00
from django.conf.urls import url
2019-12-12 08:46:07 +05:00
import views
2018-10-05 00:00:06 +05:00
urlpatterns = [
url(r'^$', views.examplePlugin, name='examplePlugin'),
]