mirror of
https://github.com/django/django.git
synced 2025-02-05 15:06:48 +00:00
6 lines
110 B
Python
6 lines
110 B
Python
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^some/url/$', lambda req:req, name='some_url'),
|
|
]
|