Files
tma-back/models/player.go
2026-01-14 23:10:23 +03:00

10 lines
121 B
Go

package models
import "github.com/gorilla/websocket"
type Player struct {
Entity
Name string
Conn *websocket.Conn
}