7 lines
120 B
Python
7 lines
120 B
Python
"""CLI subcommands."""
|
|
|
|
from .chat import chat_cmd
|
|
from .update import update_cmd
|
|
|
|
__all__ = ["chat_cmd", "update_cmd"]
|