示例#1
0
def index():
    return jsonify(resources=Light.fetch_all())
示例#2
0
def show(light_id):
    light = Light.fetch(light_id)
    return jsonify(light)