moadim 3.2.1

Loop engine for AI agents — routines over REST, MCP, and a built-in web UI
1
2
3
4
5
6
7
8
9
10
11
//! Move routine: shared logic (`logic.rs`), HTTP handler (`http.rs`), and MCP tool (`mcp.rs`).

pub(crate) mod logic;

#[path = "http.rs"]
mod http;
#[allow(
    unused_imports,
    reason = "utoipa's OpenApi derive resolves this hidden __path_move_routine type via crate::routes::move_routine::__path_move_routine"
)]
pub use http::{__path_move_routine, move_routine};