luff 0.2.1

Print files with formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CLI module for argument parsing, execution, and schema generation

mod args;
mod buffer;
mod clipboard;
mod estimation;
mod run;
mod schema;

pub use args::{Args, Commands, OutputMode};
pub use run::run;

// Re-export OutputFormat from the shared module for backward compatibility
pub use crate::format::OutputFormat;

// Re-export clipboard for backwards compatibility
pub use clipboard::copy_to_clipboard;