修改名称

This commit is contained in:
钱纯净
2025-06-09 22:23:40 +08:00
parent b035cc7fbf
commit 2adcc9a322
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package main
import (
"github.com/injoyai/logs"
"github.com/injoyai/tdx"
"github.com/injoyai/tdx/example/common"
)
func main() {
common.Test(func(c *tdx.Client) {
resp, err := c.GetHistoryMinuteTrade("20250609", "sz000001", 0, 20)
logs.PanicErr(err)
for _, v := range resp.List {
logs.Debug(v)
}
logs.Debug("总数:", resp.Count)
})
}