2018-11-24 08:19:02 +08:00
|
|
|
from django.urls import path
|
2013-03-06 18:12:24 +08:00
|
|
|
|
|
|
|
from . import views
|
2012-12-30 22:19:22 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path('regular/', views.regular),
|
2018-11-24 08:19:02 +08:00
|
|
|
path('no_response_fbv/', views.no_response),
|
|
|
|
path('no_response_cbv/', views.NoResponse()),
|
2018-12-08 06:52:28 +08:00
|
|
|
path('streaming/', views.streaming),
|
|
|
|
path('in_transaction/', views.in_transaction),
|
|
|
|
path('not_in_transaction/', views.not_in_transaction),
|
|
|
|
path('suspicious/', views.suspicious),
|
|
|
|
path('malformed_post/', views.malformed_post),
|
|
|
|
path('httpstatus_enum/', views.httpstatus_enum),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|