package websocket import "time" const ( DefaultReadTimeout = 90 * time.Second DefaultWriteTimeout = 10 * time.Second DefaultHeartbeatInterval = 30 * time.Second DefaultWorkerPoolSize = 50 DefaultMaxConnections = 2000 DefaultConnKeyPrefix = "ws:" )