1
0
Fork 0
forked from wry/wry

cli: add version subcommand

This commit is contained in:
Julian Orth 2025-07-17 09:44:51 +02:00
parent 5d02ffdfd2
commit 8b30a4dbac
2 changed files with 9 additions and 0 deletions

5
src/cli/version.rs Normal file
View file

@ -0,0 +1,5 @@
use crate::{cli::GlobalArgs, version::VERSION};
pub fn main(_global: GlobalArgs) {
println!("{VERSION}");
}