2017-07-10 20:54:40 +09:00

13 lines
148 B
Go

package websocket
import (
"net/http"
"sync"
)
type connection struct {
id string
httpRequest http.Request
writeMTX sync.Mutex
}