mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-14 19:13:52 +00:00
8 lines
102 B
Go
8 lines
102 B
Go
package bitget
|
|
|
|
import "strings"
|
|
|
|
func toGlobalSymbol(s string) string {
|
|
return strings.ToUpper(s)
|
|
}
|