]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/version.rs
Add status command
[rbdr/blog] / src / command / version.rs
index fae75961bc79957394ad67ea92679a9c21729164..a8b970b627eafdc74f6a7dc062305b3aa663250b 100644 (file)
@@ -13,8 +13,9 @@ impl super::Command for Version {
         vec![]
     }
 
-    fn execute(&self, input: Option<&String>) -> Result<()> {
-        println!("Version: {:?}!", input);
+    fn execute(&self, _: Option<&String>) -> Result<()> {
+        let version = env!("CARGO_PKG_VERSION");
+        println!("{}", version);
         return Ok(())
     }