diff --git a/backend/json.py b/backend/json.py new file mode 100644 index 0000000..7d7e102 --- /dev/null +++ b/backend/json.py @@ -0,0 +1,12 @@ +from plugin_collection import Plugin +import json + +class Json(Plugin): + + def __init__(self): + super().__init__() + self.description = 'JSON Backend Plugin' + self.identifier = 'json' + + def translate_to_native_code(self, input): + return json.dumps(input) \ No newline at end of file