Initial public release

This commit is contained in:
sinmb79
2026-03-30 13:19:11 +09:00
commit 92a692b63c
116 changed files with 5822 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import typer
app = typer.Typer(help="전략 관리 (Phase 2에서 구현)")
@app.command()
def list_strategies():
typer.echo("전략 목록 - Phase 2에서 구현 예정")
@app.command()
def start(name: str):
typer.echo(f"전략 시작: {name} - Phase 2에서 구현 예정")
@app.command()
def stop(name: str):
typer.echo(f"전략 중지: {name} - Phase 2에서 구현 예정")