mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-08 11:36:40 +00:00
3 lines
161 B
Python
3 lines
161 B
Python
METHODS_WITH_BODY = set(("POST", "PUT", "DELETE", "PATCH"))
|
|
STATUS_CODES_WITH_NO_BODY = set((100, 101, 102, 103, 204, 304))
|
|
REF_PREFIX = "#/components/schemas/"
|