Operation added to categories file

This commit is contained in:
Samuele Facenda 2022-09-29 17:34:16 +02:00
parent 6e5ff964f6
commit 3b8997003c
2 changed files with 3 additions and 15 deletions

View File

@ -65,7 +65,8 @@
"JSON to CSV",
"Avro to JSON",
"CBOR Encode",
"CBOR Decode"
"CBOR Decode",
"To Python String"
]
},
{

View File

@ -24,20 +24,7 @@ class ToPythonString extends Operation {
this.infoURL = "";
this.inputType = "byteArray";
this.outputType = "string";
this.args = [
/* Example arguments. See the project wiki for full details.
{
name: "First arg",
type: "string",
value: "Don't Panic"
},
{
name: "Second arg",
type: "number",
value: 42
}
*/
];
this.args = [];
}
/**