1
0
mirror of https://github.com/django/django.git synced 2025-01-09 01:46:20 +00:00
django/tests/check_framework/urls/beginning_with_slash.py

6 lines
101 B
Python
Raw Normal View History

from django.conf.urls import url
urlpatterns = [
url(r'/starting-with-slash/$', lambda x: x),
]