dynamicweb/datacenterlight/urls.py
2016-12-20 18:05:20 -05:00

9 lines
136 B
Python

from django.conf.urls import url
from .views import IndexView
urlpatterns = [
url(r'^/?$', IndexView.as_view(), name='index'),
]