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