1
1
Fork 0
mirror of https://github.com/jointakahe/takahe.git synced 2025-02-17 16:15:14 +00:00
takahe/hatchway/constants.py

11 lines
207 B
Python
Raw Normal View History

import enum
class InputSource(str, enum.Enum):
path = "path"
query = "query"
body = "body"
body_direct = "body_direct"
query_and_body_direct = "query_and_body_direct"
file = "file"