mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
5 lines
110 B
Python
5 lines
110 B
Python
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("", include([(r"^tuple/$", lambda x: x)])),
|
|
]
|