13 lines
181 B
Go
13 lines
181 B
Go
package ws
|
|
|
|
import (
|
|
"github.com/coder/websocket"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type shard struct {
|
|
ID uuid.UUID
|
|
conn websocket.Conn
|
|
activeStreams []string
|
|
}
|