Sebastian Mark
f0d7dc80fc
- add ProtocolVersion variable to metadata package
- don't set `ServerMessage.ProtocolVersion` in `main`
- update `ServerMessage` default to include ProtocolVersion
🤖
6 lines
154 B
Go
6 lines
154 B
Go
package metadata
|
|
|
|
import "strings"
|
|
|
|
const GoTomatoVersion = "v0.0.4" // The GoTomato Version
|
|
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0]
|