fix struct

This commit is contained in:
2026-01-13 13:23:54 +08:00
parent 205b37a676
commit 49e70554f1
10 changed files with 130 additions and 141 deletions

11
internal/logic/a/new.go Normal file
View File

@@ -0,0 +1,11 @@
package a
import tushare "github.com/ShawnRong/tushare-go"
var (
TushareClient *tushare.TuShare
)
func NewApiClient() {
TushareClient = tushare.New("你的token")
}