moved code in steel, time to implement working steel next

This commit is contained in:
filipriec
2025-03-08 23:09:15 +01:00
parent 07170bbe00
commit 4a4f92c41e
10 changed files with 195 additions and 21 deletions

View File

@@ -2,11 +2,11 @@
use tonic::Status;
use sqlx::{PgPool, Error as SqlxError};
use common::proto::multieko2::table_script::{PostTableScriptRequest, TableScriptResponse};
use crate::steel::validation::script::validate_script;
use crate::steel::server::script::validate_script;
use serde_json::Value;
// Add these imports for the execution module and ScriptOperation
use crate::steel::handlers::execution::{self, ScriptOperation};
use crate::steel::server::execution::{self, ScriptOperation};
const SYSTEM_COLUMNS: &[&str] = &["id", "deleted", "created_at"];