use cuddle_please_commands::PleaseCommand; fn main() -> anyhow::Result<()> { dotenvy::dotenv().ok(); let current_dir = std::env::current_dir().ok(); let current_dir = current_dir.as_deref(); PleaseCommand::new().execute(current_dir)?; Ok(()) }