[2026-06-02] 장 후 결산 및 전략 제안서 생성

This commit is contained in:
2026-06-02 15:34:56 +09:00
parent dd789cfbda
commit b71e08b498
3 changed files with 233 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import asyncio, sys, os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
from dotenv import load_dotenv
load_dotenv()
from app.monitor.notifier import send
msg = sys.argv[1]
asyncio.run(send(msg))