Skip to content

Commit

Permalink
chore(cli): add figlet for CLI (#2909)
Browse files Browse the repository at this point in the history
Add figlet to CLI help message

Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
  • Loading branch information
aarnphm committed Aug 16, 2022
1 parent f9997c5 commit 1e6a65d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion bentoml_cli/cli.py
Expand Up @@ -24,7 +24,15 @@ def create_bentoml_cli() -> click.Group:
@click.group(cls=BentoMLCommandGroup, context_settings=CONTEXT_SETTINGS)
@click.version_option(BENTOML_VERSION, "-v", "--version")
def bentoml_cli():
"""BentoML CLI"""
"""
\b
██████╗░███████╗███╗░░██╗████████╗░█████╗░███╗░░░███╗██╗░░░░░
██╔══██╗██╔════╝████╗░██║╚══██╔══╝██╔══██╗████╗░████║██║░░░░░
██████╦╝█████╗░░██╔██╗██║░░░██║░░░██║░░██║██╔████╔██║██║░░░░░
██╔══██╗██╔══╝░░██║╚████║░░░██║░░░██║░░██║██║╚██╔╝██║██║░░░░░
██████╦╝███████╗██║░╚███║░░░██║░░░╚█████╔╝██║░╚═╝░██║███████╗
╚═════╝░╚══════╝╚═╝░░╚══╝░░░╚═╝░░░░╚════╝░╚═╝░░░░░╚═╝╚══════╝
"""

# Add top-level CLI commands
add_env_command(bentoml_cli)
Expand Down

0 comments on commit 1e6a65d

Please sign in to comment.