This commit is contained in:
2026-01-13 01:08:10 +08:00
parent 9fd7eac2c8
commit fcf611e22b
8 changed files with 140 additions and 18 deletions

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

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