From a22241ec3235e08eb887f09fa19755647322a3c7 Mon Sep 17 00:00:00 2001 From: Nex Date: Fri, 17 Sep 2021 14:19:03 +0200 Subject: [PATCH] Added version commands --- mvt/android/cli.py | 8 ++++++++ mvt/ios/cli.py | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/mvt/android/cli.py b/mvt/android/cli.py index ec4125e..9f2c824 100644 --- a/mvt/android/cli.py +++ b/mvt/android/cli.py @@ -34,6 +34,14 @@ def cli(): logo() +#============================================================================== +# Command: version +#============================================================================== +@cli.command("version", help="Show the currently installed version of MVT") +def version(): + return + + #============================================================================== # Download APKs #============================================================================== diff --git a/mvt/ios/cli.py b/mvt/ios/cli.py index 1ee8257..2485749 100644 --- a/mvt/ios/cli.py +++ b/mvt/ios/cli.py @@ -38,6 +38,14 @@ def cli(): logo() +#============================================================================== +# Command: version +#============================================================================== +@cli.command("version", help="Show the currently installed version of MVT") +def version(): + return + + #============================================================================== # Command: decrypt-backup #==============================================================================