2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import re_path
|
2011-06-17 00:41:14 +08:00
|
|
|
|
2014-06-03 19:30:14 +08:00
|
|
|
from . import views
|
|
|
|
|
2015-08-18 01:45:07 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
re_path(r'(regex_error/$', views.empty_view),
|
2015-08-18 01:45:07 +08:00
|
|
|
]
|