Files
CyberPanel/examplePlugin/urls.py
Usman Nasir f879ffba29 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'),
]