surrealpatch/src/cli/version.rs
Finn Bear cdf97fcb96
Upgrade to clap v4 (#2015)
Co-authored-by: Steve Fan <29133953+stevefan1999-personal@users.noreply.github.com>
2023-05-22 20:19:35 +01:00

7 lines
124 B
Rust

use crate::env::release;
use crate::err::Error;
pub fn init() -> Result<(), Error> {
println!("{}", release());
Ok(())
}