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

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