8 lines
116 B
Python
8 lines
116 B
Python
from django.conf.urls import url
|
|
|
|
from website.views import home_view
|
|
|
|
urlpatterns = [
|
|
url(r'$^', home_view),
|
|
]
|