gitee.com/quant1x/engine@v1.8.4/datasource/base/tdx_minutes_test.go (about)

     1  package base
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestGetMinutes(t *testing.T) {
     9  	code := "sh000001"
    10  	code = "sh510050"
    11  	code = "sh600105"
    12  	date := "2023-09-28"
    13  	v := GetMinutes(code, date)
    14  	fmt.Println(v)
    15  }