marvin-sw-text-adventure/marvin_sw_text_adventure/cli/tui.py
2023-05-15 11:37:32 -05:00

18 lines
381 B
Python

import typer
from marvin_sw_text_adventure.cli.common import verbose_callback
from marvin_sw_text_adventure.tui.app import run_app
tui_app = typer.Typer()
@tui_app.callback(invoke_without_command=True)
def i(
verbose: bool = typer.Option(
False,
callback=verbose_callback,
help="show the log messages",
),
):
"interactive tui"
run_app()