13 lines
264 B
Python
13 lines
264 B
Python
|
from flask_restful import Resource
|
||
|
|
||
|
class Teapot(Resource):
|
||
|
def get(self):
|
||
|
payload = [
|
||
|
{
|
||
|
"tea": "available",
|
||
|
"height": "short",
|
||
|
"width": "stout"
|
||
|
}
|
||
|
]
|
||
|
return payload
|