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 input;
8#[cfg(feature = "metadata-provider")]
9pub mod metadata;
10pub mod output;
11pub mod schema;
12#[cfg(feature = "serve")]
13pub mod server;
14
15// Re-export commonly used types
16pub use cli::Args;