11 lines
239 B
Python
11 lines
239 B
Python
"""CLI subcommands."""
|
|
|
|
from .chat import chat_cmd
|
|
from .mail import mail_cmd
|
|
from .update import update_cmd
|
|
|
|
# alias: upgrade is the same as update
|
|
upgrade_cmd = update_cmd
|
|
|
|
__all__ = ["chat_cmd", "mail_cmd", "update_cmd", "upgrade_cmd"]
|