1
0
mirror of https://github.com/django/django.git synced 2025-02-23 16:06:26 +00:00

9 lines
165 B
Python
Raw Normal View History

from django.urls import path
from . import views
urlpatterns = [
path("request_attrs/", views.request_processor),
path("debug/", views.debug_processor),
]