unnecessary dereference

This commit is contained in:
sqlerrorthing
2025-11-03 05:15:53 +08:00
parent d1e56df7fc
commit eaf0e6c756

View File

@@ -6,7 +6,7 @@ async fn main() -> anyhow::Result<()> {
pretty_env_logger::init();
let cli = CliApp::parse();
match &cli.cmd() {
match cli.cmd() {
Some(cmd) => cmd.exec().await?,
None => println!("zaprett installed. Join us: t.me/zaprett_module"),
}