min.ie/app/urls.py

8 lines
161 B
Python
Raw Normal View History

2018-08-07 16:55:22 +01:00
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.home, name='home'),
url(r'(.*)', views.catchall, name='short'),
]