Begun redesign of binance futures websocket. Added test provider for testing purposes.

This commit is contained in:
2025-09-11 08:29:12 +00:00
parent e56bb210f8
commit 924187b2f5
10 changed files with 261 additions and 451 deletions

View File

@@ -0,0 +1,12 @@
package ws
import (
"github.com/coder/websocket"
"github.com/google/uuid"
)
type shard struct {
ID uuid.UUID
conn websocket.Conn
activeStreams []string
}