const (
// Time allowed to write a message to the peer. WriteWait = 3 * time.Second// Time allowed to read the next pong message from the peer. PongWait = 30 * time.Second// Send pings to peer with this period. Must be less than pongWait. PingPeriod = (PongWait * 9) / 10
)