summaryrefslogtreecommitdiffstats
path: root/src/app_context.rs
blob: 3ed30939aa8aad7fb546d44af7b9ba51f121b5f9 (plain)
1
2
3
4
5
6
7
8
9
use crate::cli::AppLaunchArgs;
use crate::verbs::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,
}