flusso-cli 0.1.1

flusso command-line interface: keep OpenSearch in sync with Postgres from declarative config.
1
2
3
4
5
6
7
8
9
10
11
//! The CLI subcommands and the shared human-facing printer.
//!
//! `main` dispatches to one `execute` per subcommand; [`print`](mod@print) is the pretty
//! output helper they share.

pub(crate) mod admin;
pub(crate) mod build;
pub(crate) mod check;
pub(crate) mod print;
pub(crate) mod run;
pub(crate) mod schema_cmd;