Zynh0722 2024-01-31 13:38:34 -08:00
commit a4331e93a3
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ fn main() -> anyhow::Result<()> {
if arg != "-v" {
return Err(anyhow!("usage: rwm [-v]"));
} else {
println!("version goes here ;P"); // TODO: Sus out version info from cargo
println!(env!("CARGO_PKG_VERSION")); // TODO: test this
return Ok(());
}
}