1 2 3 4 5 6 7 8 9 10 11
use crate::cli::actions::Action; use anyhow::Result; /// Handle the create action pub async fn handle(action: Action) -> Result<()> { match action { Action::Run { dsn } => { todo!("Implement the run action with dsn: {:?}", dsn); } } }