rhai implementation added

This commit is contained in:
filipriec
2025-03-06 19:32:45 +01:00
parent a52e2b05f8
commit 0e0578d158
8 changed files with 290 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
package multieko2.table_script;
message PostTableScriptRequest {
int64 table_definition_id = 1;
string target_column = 2;
string rhai_script = 3;
}
message TableScriptResponse {
int64 id = 1;
string created_at = 2;
string warnings = 3;
}