From 0c72f5552936b43f5b0e442156bdde217b24558b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= Date: Thu, 22 Jun 2023 13:07:08 +0200 Subject: [PATCH] add schema generation script --- schema_generation.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 schema_generation.py diff --git a/schema_generation.py b/schema_generation.py new file mode 100755 index 0000000..4e6e175 --- /dev/null +++ b/schema_generation.py @@ -0,0 +1,6 @@ +import json +from main import FunctionInputs + + +if __name__ == "__main__": + print(json.dumps(FunctionInputs.schema())) \ No newline at end of file