Basic TUI using textual

This commit is contained in:
3wc
2023-10-27 01:13:08 +01:00
parent 98aee02ee8
commit b5e486020e
2 changed files with 66 additions and 0 deletions

View File

@ -700,6 +700,13 @@ def _import(username, mapping_path=None, output=None, category_search=None, afte
output_file.close()
@cli.command()
def app():
from .app import HamsterToolsApp
app = HamsterToolsApp(db_cursor=c)
app.run()
@cli.command()
def hamster():
click.echo('🐹')