migration to JS engine #1

Merged
akulij merged 131 commits from dev into main 2025-05-31 08:49:52 +00:00
Showing only changes of commit c8c67b54e3 - Show all commits

View File

@ -17,7 +17,8 @@ pub enum ScriptError {
pub type ScriptResult<T> = Result<T, ScriptError>; pub type ScriptResult<T> = Result<T, ScriptError>;
pub type BotFunction = String; // temporal workaround #[derive(Serialize, Deserialize, Debug, Clone)]
pub struct BotFunction(String); // temporal workaround
// TODO: remove this function since it is suitable only for early development // TODO: remove this function since it is suitable only for early development
#[allow(clippy::print_stdout)] #[allow(clippy::print_stdout)]