mirror of
https://github.com/jointakahe/takahe.git
synced 2025-02-17 08:05:13 +00:00
11 lines
207 B
Python
11 lines
207 B
Python
|
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"
|