Files
boxmaker/crates/brokerd/src/runner.rs
T
kyle 8c1852ec47 Add Decision, decide and the runner stub to brokerd
Implemented-By: Laguna S 2.1 (OpenCode)
2026-09-17 09:05:48 -07:00

13 lines
349 B
Rust

//! Tool runner stub. Real tool execution arrives in M3.
use crate::policy::Decision;
use proto::ToolResponse;
/// Takes the Decision by value, so one decision cannot run a tool twice.
pub fn run(decision: Decision) -> ToolResponse {
let _ = decision;
ToolResponse::Failed {
message: "no tool runner until M3".to_string(),
}
}