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