mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
25 lines
710 B
Go
25 lines
710 B
Go
// Copyright (c) 2012-2014 Jeremy Latt
|
|
// Copyright (c) 2014-2015 Edmund Huber
|
|
// Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
|
|
// released under the MIT license
|
|
|
|
package irc
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// SemVer is the semantic version of Oragono.
|
|
SemVer = "0.4.0-unreleased"
|
|
)
|
|
|
|
var (
|
|
// Ver is the full version of Oragono, used in responses to clients.
|
|
Ver = fmt.Sprintf("oragono-%s", SemVer)
|
|
|
|
// maxLastArgLength is used to simply cap off the final argument when creating general messages where we need to select a limit.
|
|
// for instance, in MONITOR lists, RPL_ISUPPORT lists, etc.
|
|
maxLastArgLength = 400
|
|
// maxTargets is the maximum number of targets for PRIVMSG and NOTICE.
|
|
maxTargets = 4
|
|
)
|