package models import "github.com/gorilla/websocket" type Player struct { ID uint32 X float32 Y float32 Z float32 InputX float32 InputZ float32 Name string PhotoURL string Conn *websocket.Conn }