1 2 3 4 5 6 7 8 9
use crate::command::handler; use crate::Opts; /// Execute command pub async fn execute(opts: Opts) -> color_eyre::Result<()> { match opts { Opts::Start => handler::handle_start().await, } }