flowscope-cli 0.6.0

Command-line interface for FlowScope SQL lineage analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! FlowScope CLI library.
//!
//! This module exposes internal types for testing purposes.
//! The main entry point is the `flowscope` binary.

pub mod cli;
pub mod fix;
pub mod fix_engine;
pub mod input;
#[cfg(feature = "metadata-provider")]
pub mod metadata;
pub mod output;
pub mod schema;
#[cfg(feature = "serve")]
pub mod server;

// Re-export commonly used types
pub use cli::Args;