ReMe/reme_cli/application.py
2026-04-08 16:19:27 +08:00

20 lines
435 B
Python

from reme_cli.component import BaseComponent
class Application(BaseComponent):
"""Application component for managing the main application."""
def __init__(self) -> None:
super().__init__()
...
async def start(self) -> None:
"""Start the application."""
# 初始化llm formater
#
pass
async def close(self) -> None:
"""Close the application."""
pass