mirror of https://github.com/django/django.git
6 lines
110 B
Python
6 lines
110 B
Python
|
from django.urls import include, path
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', include([(r'^tuple/$', lambda x: x)])),
|
||
|
]
|