mirror of
https://github.com/django/django.git
synced 2024-11-22 03:18:31 +01:00
9 lines
165 B
Python
9 lines
165 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("request_attrs/", views.request_processor),
|
|
path("debug/", views.debug_processor),
|
|
]
|