Files
CyberPanel/examplePlugin/urls.py
Usman Nasir f1f03c7e43 fix imports
2019-12-12 08:46:07 +05:00

7 lines
124 B
Python
Executable File

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