min.ie/app/urls.py

8 lines
177 B
Python
Raw Permalink Normal View History

2025-05-29 15:57:37 +01:00
from django.urls import include, re_path
2018-08-07 16:55:22 +01:00
from . import views
urlpatterns = [
2025-05-29 15:57:37 +01:00
re_path(r'^$', views.home, name='home'),
re_path(r'(.*)', views.catchall, name='short'),
2018-08-07 16:55:22 +01:00
]