mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-13 11:33:45 -04:00
4 lines
161 B
Python
4 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/"
|