mirror of
https://github.com/jointakahe/takahe.git
synced 2025-01-29 15:48:26 +00:00
5d2ed9edfe
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"
|