mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-19 15:34:20 -05:00
4 lines
166 B
Python
4 lines
166 B
Python
METHODS_WITH_BODY = {"GET", "HEAD", "POST", "PUT", "DELETE", "PATCH"}
|
|
STATUS_CODES_WITH_NO_BODY = {100, 101, 102, 103, 204, 304}
|
|
REF_PREFIX = "#/components/schemas/"
|