Première fonction OpenFaas Python

import json

def handle(req):
    json_req = json.loads(req)
    return json_req
knavels