Adding logo to iOS cli

This commit is contained in:
Nex 2021-08-26 12:40:45 +02:00
parent 75ee2db02e
commit c859b43220
3 changed files with 4 additions and 3 deletions

View File

@ -7,6 +7,7 @@ from rich import print
from .version import MVT_VERSION, check_for_updates
def logo():
print("\n")
print("\t[bold]MVT[/bold] - Mobile Verification Toolkit")

View File

@ -3,9 +3,8 @@
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
from packaging import version
import requests
from packaging import version
MVT_VERSION = "1.2.4"

View File

@ -12,6 +12,7 @@ from rich.prompt import Prompt
from mvt.common.help import *
from mvt.common.indicators import Indicators, IndicatorsFileBadFormat
from mvt.common.logo import logo
from mvt.common.module import run_module, save_timeline
from mvt.common.options import MutuallyExclusiveOption
@ -34,7 +35,7 @@ PASSWD_ENV = "MVT_IOS_BACKUP_PASSWORD"
#==============================================================================
@click.group(invoke_without_command=False)
def cli():
return
logo()
#==============================================================================