5d1b26d4f7
Signed-off-by: Nico Schottelius <nico@freiheit.schottelius.org>
7 lines
116 B
Python
7 lines
116 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
]
|