14 lines
292 B
Python
14 lines
292 B
Python
"""CLI subcommands."""
|
|
|
|
import click
|
|
|
|
from .update import update_cmd
|
|
|
|
__all__ = ["update_cmd", "upgrade_cmd"]
|
|
|
|
|
|
@click.command("upgrade")
|
|
def upgrade_cmd() -> None:
|
|
"""Alias for update: reinstall myclaude from this repository."""
|
|
return click.get_current_context().invoke(update_cmd)
|