broot 0.8.0

Fuzzy Search + tree + cd
1
2
3
4
5
6
7
8
9
use crate::cli::AppLaunchArgs;
use crate::verb_store::VerbStore;

/// The immutable container that can be passed around to provide
/// the configuration things
pub struct AppContext {
    pub launch_args: AppLaunchArgs,
    pub verb_store: VerbStore,
}