decision_cockpit 0.1.0

Layer — product decision memory with MCP tools and an embedded review dashboard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Domain services: the single source of business logic shared by the HTTP API
//! and the MCP server. Handlers in either interface should be thin adapters that
//! deserialize input, call a service function, and serialize the result.

pub mod candidates;
pub mod documents;
pub mod drift;
pub mod graph;
pub mod memos;
pub mod relations;

mod payload;