mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
5 lines
109 B
Python
5 lines
109 B
Python
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'^include-with-dollar$', include([])),
|
|
]
|