mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-02 19:35:49 +01:00
7 lines
124 B
Python
7 lines
124 B
Python
from django.conf.urls import url
|
|
import views
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^$', views.examplePlugin, name='examplePlugin'),
|
|
] |