1 2 3 4 5 6 7 8
use crate::cli::{actions::Action, commands, dispatch::handler}; /// Start the CLI #[must_use] pub fn start() -> Action { let matches = commands::new().get_matches(); handler(&matches) }