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