run_code_rmcp 0.0.36

云函数服务,执行JS/TS/Python语言代码,脚本必须有约定的函数名称(handler/main),会调用约定的函数名称结果和日志返回.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cache;
mod deno_runner;
#[cfg(feature = "mcp")]
pub mod mcp;
mod model;
mod python_runner;
#[cfg(test)]
mod tests;
mod warm_up;

pub use cache::*;
pub use deno_runner::*;
pub use model::RunCodeHttpResult;
pub use model::{CodeExecutor, CodeScriptExecutionResult, LanguageScript};
pub use python_runner::*;
pub use warm_up::warm_up_all_envs;