1// Package version is used to store the version of the server during runtime.2// The values are set during runtime in the main package.3package version45var (6 // Version is the version of the server.7 Version = ""89 // CommitSHA is the commit SHA of the server.10 CommitSHA = ""1112 // CommitDate is the commit date of the server.13 CommitDate = ""14)