18 lines
375 B
Go
18 lines
375 B
Go
package main
|
|
|
|
import (
|
|
bybit "bybit.go.api"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
// Create a public WebSocket client
|
|
ws := bybit.NewBybitPublicWebSocket("wss://stream.bybit.com/v5/public/spot", func(message string) error {
|
|
fmt.Println("Received:", message)
|
|
return nil
|
|
})
|
|
// Connect and subscribe to the desired topic
|
|
_ = ws.Connect([]string{"orderbook.1.BTCUSDT"})
|
|
select {}
|
|
}
|