1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Behavior Executor Node Binary //! //! Runs the behavior executor node as a standalone binary. use mecha10_core::prelude::*; #[tokio::main] async fn main() -> anyhow::Result<()> { init_logging(); // Uses auto-generated run() from #[derive(Node)] mecha10_nodes_behavior_executor::run() .await .map_err(|e| anyhow::anyhow!(e)) }