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