Files
CyberPanel/examplePlugin/urls.py
Usman Nasir 2cd3e62c51 imports
2019-12-12 11:04:05 +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'),
]