This commit is contained in:
2026-08-25 16:40:18 +08:00
parent 4514646c6a
commit fa62436a73
28 changed files with 6401 additions and 0 deletions

20
scripts/run.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
setlocal
cd /d "%~dp0.."
cd go-client
if not defined QMT_BASE_URL set "QMT_BASE_URL=http://127.0.0.1:10086"
if not defined QMT_TOKEN set "QMT_TOKEN=QMTbyYanweidong"
if not defined QMT_ACCOUNT set "QMT_ACCOUNT=stock"
echo QMT_BASE_URL=%QMT_BASE_URL%
echo QMT_ACCOUNT=%QMT_ACCOUNT%
echo.
go run ./apps/cmd %*
if errorlevel 1 (
echo.
echo 运行失败。
pause
exit /b 1
)