Files
CyberPanel/examplePlugin/urls.py
Usman Nasir 6e6cbed1a0 fix imports
2019-12-11 10:40:35 +05:00

7 lines
131 B
Python
Executable File

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