Files
stock/internal/logic/a/new.go

12 lines
170 B
Go
Raw Normal View History

2026-01-13 13:23:54 +08:00
package a
2026-01-13 01:08:10 +08:00
import tushare "github.com/ShawnRong/tushare-go"
var (
TushareClient *tushare.TuShare
)
2026-01-13 13:23:54 +08:00
func NewApiClient() {
2026-01-13 01:08:10 +08:00
TushareClient = tushare.New("你的token")
2026-01-13 13:23:54 +08:00
}