mirror of
https://github.com/jointakahe/takahe.git
synced 2025-02-16 15:45:14 +00:00
Removes django-ninja and replaces it with a new API framework, "hatchway". I plan to move hatchway into its own project very soon.
10 lines
207 B
Python
10 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"
|