Example Plugin

This commit is contained in:
usmannasir
2018-10-05 00:00:06 +05:00
parent 32ba033241
commit 95a70d0e8b
16 changed files with 328 additions and 9 deletions

7
examplePlugin/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.conf.urls import url
import views
urlpatterns = [
url(r'^$', views.examplePlugin, name='examplePlugin'),
]