//! A module representing the scope
/// The scopes we might read the config for
#[derive(Ord, PartialOrd, Eq, PartialEq, Debug, Clone, clap::ValueEnum, Copy)]pubenumScope{/// The home directory
Global,/// The local folder
Local,}implScope{/// If this scope is global or not
#[must_use]pubfnis_global(&self)->bool{&Self::Global ==self}}implScope{}