1
0
Fork 0
forked from External/ergo

Fixing warnings and golint stuff

This commit is contained in:
Daniel Oaks 2016-10-13 17:36:44 +10:00
parent 09802f7181
commit e807f3ca04
8 changed files with 25 additions and 13 deletions

View file

@ -8,9 +8,11 @@ package irc
import "fmt"
const (
SEM_VER = "0.2.0-unreleased"
// SemVer is the semantic version of Oragono.
SemVer = "0.2.0-unreleased"
)
var (
VER = fmt.Sprintf("oragono-%s", SEM_VER)
// Ver is the full version of Oragono, used in responses to clients.
Ver = fmt.Sprintf("oragono-%s", SemVer)
)