Files
g365sfu/socket/struct/connection.go

12 lines
180 B
Go

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