flowscope_cli/lib.rs
1//! FlowScope CLI library.
2//!
3//! This module exposes internal types for testing purposes.
4//! The main entry point is the `flowscope` binary.
5
6pub mod cli;
7pub mod fix;
8pub mod fix_engine;
9pub mod input;
10#[cfg(feature = "metadata-provider")]
11pub mod metadata;
12pub mod output;
13pub mod schema;
14#[cfg(feature = "serve")]
15pub mod server;
16
17// Re-export commonly used types
18pub use cli::Args;