Sebastian Mark
cbe2e007de
- removes "v" from the ProtocolVersion in the ServerMessage - remove "v" prefix from GoTomatoVersion constant - re-add "v" for for human readable output (`-version`) - update README
6 lines
206 B
Go
6 lines
206 B
Go
package metadata
|
|
|
|
import "strings"
|
|
|
|
const GoTomatoVersion = "0.0.8" // The GoTomato version
|
|
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] // The protocol version
|