summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/include_with_dollar.py
blob: dc92d594bf1fb9c16d3305b65d2f95d4b1288de6 (plain)
1
2
3
4
5
from django.urls import include, re_path

urlpatterns = [
    re_path("^include-with-dollar$", include([])),
]