decision_cockpit 0.1.0

Layer — product decision memory with MCP tools and an embedded review dashboard
Documentation
//! Decision Cockpit: a product-decision memory system.
//!
//! The same domain/service layer is exposed through two interfaces:
//! an HTTP API (for the UI) and an MCP stdio server (for an LLM agent).

pub mod assets;
pub mod bootstrap;
pub mod config;
pub mod db;
pub mod domain;
pub mod error;
pub mod http;
pub mod mcp;
pub mod services;
pub mod state;

pub use config::Config;
pub use error::{AppError, AppResult};
pub use state::AppState;