bbgo_origin/pkg/exchange/bitget/convert.go

8 lines
102 B
Go
Raw Normal View History

2023-08-09 07:20:33 +00:00
package bitget
import "strings"
func toGlobalSymbol(s string) string {
return strings.ToUpper(s)
}