12 lines
180 B
Go
12 lines
180 B
Go
package connection
|
|
|
|
import (
|
|
"github.com/gorilla/websocket"
|
|
)
|
|
|
|
type Connection struct {
|
|
Identificator string
|
|
//Подсоединенный сокет
|
|
Socket *websocket.Conn
|
|
}
|