コード例 #1
0
def get():
    return Aplicacion.getAll()
コード例 #2
0
def put(idApp):
    body = request.json
    return Aplicacion.put(idApp, body)
コード例 #3
0
def delete(idApp):
    return Aplicacion.delete(idApp)
コード例 #4
0
def post():
    body = request.json
    return Aplicacion.post(body)