1. from django.urls import include, path, re_path
    
  2. 
    
  3. urlpatterns = [
    
  4.     path(
    
  5.         "",
    
  6.         include(
    
  7.             [
    
  8.                 re_path("^include-with-dollar$", include([])),
    
  9.             ]
    
  10.         ),
    
  11.     ),
    
  12. ]