13 lines
148 B
Go
13 lines
148 B
Go
package websocket
|
|
|
|
import (
|
|
"net/http"
|
|
"sync"
|
|
)
|
|
|
|
type connection struct {
|
|
id string
|
|
httpRequest http.Request
|
|
writeMTX sync.Mutex
|
|
}
|