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 #==============================================================================