forked from External/ergo
constants: Make SEM_VER the actual version number conforming to Semantec Versioning, and VER the composed number
This commit is contained in:
parent
748bc759cb
commit
1d51bb450a
2 changed files with 10 additions and 4 deletions
|
|
@ -5,8 +5,14 @@
|
|||
|
||||
package irc
|
||||
|
||||
import "fmt"
|
||||
|
||||
const (
|
||||
SEM_VER = "oragono-0.1.0-unreleased"
|
||||
SEM_VER = "0.1.0-unreleased"
|
||||
CRLF = "\r\n"
|
||||
MAX_REPLY_LEN = 512 - len(CRLF)
|
||||
)
|
||||
|
||||
var (
|
||||
VER = fmt.Sprintf("oragono-%s", SEM_VER)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue