1 2 3 4 5
use crate::cli::bootstrap; pub(crate) async fn handle_command(config: Option<String>) -> Result<(), String> { bootstrap(config.as_deref()).await }