mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-15 03:23: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)
|
||
|
}
|