Backend/modules/structs/MinecraftClient.go

9 lines
138 B
Go

package structs
import "github.com/gofiber/websocket/v2"
type MinecraftClient struct {
Name string
Connection *websocket.Conn
}