mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +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),
|
|
]
|