#![forbid(unsafe_code)]
pub mod cli;
pub mod config;
pub mod error;
pub mod opener;
pub mod resolver;
pub mod strategy;
pub use config::Config;
pub use error::SwitcherError;
pub use resolver::{identify_current, sibling_for_target, CurrentMatch};
pub use strategy::{select, Mode};