mirror of
https://github.com/ThunixdotNet/thunix_api.git
synced 2026-06-14 22:30:18 +00:00
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
|