dev #26

Merged
bema merged 42 commits from dev into master 2023-02-13 11:04:17 +01:00
Showing only changes of commit 9ce0e6fcd3 - Show all commits

View File

@@ -50,15 +50,15 @@ def process_xml(request: request, type: str) -> str:
return json.dumps(response) return json.dumps(response)
@app.route("/xpath", methods=["POST"]) @app.route("/xpathpost", methods=["POST"])
def xpath(): def xpath():
return process_xml(request, "xpath") return process_xml(request, "xpath")
@app.route("/xsd", methods=["POST"]) @app.route("/xsdpost", methods=["POST"])
def xsd(): def xsd():
return process_xml(request, "xsd") return process_xml(request, "xsd")
@app.route("/xslt", methods=["POST"]) @app.route("/xsltpost", methods=["POST"])
def xslt(): def xslt():
return process_xml(request, "xslt") return process_xml(request, "xslt")