Skip to main content

muster/
lib.rs

1//! muster - a ratatui terminal workspace for running CLI agents and dev
2//! processes side by side.
3//!
4//! The crate is organized as a hexagon: a pure [`domain`], and [`adapter`]s that
5//! plug concrete infrastructure into the domain's ports. The binary in
6//! `main.rs` is a thin composition root over this library.
7
8pub mod adapter;
9pub mod application;
10pub mod constants;
11pub mod domain;
12pub mod error;