mirror of
https://github.com/waytotheweb/scripts.git
synced 2026-03-29 18:07:07 +00:00
9 lines
218 B
Python
9 lines
218 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^$', views.configservercsf, name='configservercsf'),
|
|
url(r'^iframe/$', views.configservercsfiframe, name='configservercsfiframe'),
|
|
]
|