20 lines
274 B
Python
20 lines
274 B
Python
main_swagger = {
|
|
"methods": ["GET"],
|
|
"parameters": [
|
|
|
|
],
|
|
"responses":
|
|
{
|
|
"200":
|
|
{
|
|
"description": "A hello world json",
|
|
"schema":
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"message": {"type": "string", "example": "Hello, Flask!"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |