Vladimir Bely
Results
14
comments of
Vladimir Bely
@GGegenhuber
``` baseURL = "wss://fstream.binance.com/stream?streams=" func getStreamURL(cl []string) string { var streams []string for _, coin := range cl { streams = append(streams, fmt.Sprintf("%s@kline_1m", coin)) } return baseURL + strings.Join(streams, "/")...
The code works, but it would be nice to do this in the library itself