muster-workspace 0.2.1

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

pub mod adapter;
pub mod application;
pub mod constants;
pub mod domain;
pub mod error;