8 lines
161 B
Python
8 lines
161 B
Python
|
from django.conf.urls import url
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', views.home, name='home'),
|
||
|
url(r'(.*)', views.catchall, name='short'),
|
||
|
]
|