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),
|
2020-02-13 06:15:00 +08:00
|
|
|
path("async_regular/", views.async_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),
|
2023-02-16 07:16:51 +08:00
|
|
|
path("async_streaming/", views.async_streaming),
|
2018-12-08 06:52:28 +08:00
|
|
|
path("in_transaction/", views.in_transaction),
|
|
|
|
path("not_in_transaction/", views.not_in_transaction),
|
2022-12-03 10:04:42 +08:00
|
|
|
path("not_in_transaction_using_none/", views.not_in_transaction_using_none),
|
|
|
|
path("not_in_transaction_using_text/", views.not_in_transaction_using_text),
|
2020-09-07 19:33:47 +08:00
|
|
|
path("bad_request/", views.bad_request),
|
2018-12-08 06:52:28 +08:00
|
|
|
path("suspicious/", views.suspicious),
|
|
|
|
path("malformed_post/", views.malformed_post),
|
|
|
|
path("httpstatus_enum/", views.httpstatus_enum),
|
2020-02-13 06:15:00 +08:00
|
|
|
path("unawaited/", views.async_unawaited),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|