decision_cockpit/lib.rs
1//! Decision Cockpit: a product-decision memory system.
2//!
3//! The same domain/service layer is exposed through two interfaces:
4//! an HTTP API (for the UI) and an MCP stdio server (for an LLM agent).
5
6pub mod assets;
7pub mod bootstrap;
8pub mod config;
9pub mod db;
10pub mod domain;
11pub mod error;
12pub mod http;
13pub mod mcp;
14pub mod services;
15pub mod state;
16
17pub use config::Config;
18pub use error::{AppError, AppResult};
19pub use state::AppState;