mc-webserver/pageHandler/pages/index/mc.go
2023-08-13 20:19:47 +01:00

26 lines
604 B
Go

package index
import (
"html/template"
)
type MC struct {
Version *string
ProtocolVersion *int64
Address string
Port uint16
Port6 *uint16
PlayerCount *int64
MaxPlayers *int64
Players []string
MOTD string
ActualHost *string
ActualPort *uint16
Favicon *template.HTML
Edition *string
ModCount int64
Mods []string
SecureProfilesEnforced *bool
PreviewChatEnforced *bool
}