This commit is contained in:
mwiegand 2021-11-16 22:34:49 +01:00
parent 00548033a6
commit 1ab39431a0

View file

@ -11,5 +11,6 @@ app = Flask(__name__)
def build(strategy):
return check_output([
f"/{environ['STRATEGIES_DIR']}/{strategy}",
json.dumps(request.get_json(), sort_keys=True, indent=4)
json.dumps(request.get_json(), sort_keys=True, indent=4),
json.dumps(request.args.to_dict()),
])