Skip to main content

f00_cli/
lib.rs

1//! Library surface for the **f00** CLI (testable without spawning a process).
2
3pub mod cli;
4pub mod config;
5pub mod run;
6pub mod update;
7
8#[cfg(feature = "plugins")]
9pub mod plugins_cmd;
10
11pub use cli::Args;
12pub use config::{
13    invoked_as_ls, invoked_as_ls_from, load_user_config, merge_config_into_args, parse_config_str,
14    platform_config_path, resolve_args, FileConfig,
15};
16pub use run::{build_config, prepare_args, run, run_with_argv0};