7 lines
161 B
Python
7 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'),
|
|
]
|