mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
12 lines
245 B
Go
12 lines
245 B
Go
|
package caps
|
||
|
|
||
|
// Version is used to select which max version of CAP the client supports.
|
||
|
type Version uint
|
||
|
|
||
|
const (
|
||
|
// Cap301 refers to the base CAP spec.
|
||
|
Cap301 Version = 301
|
||
|
// Cap302 refers to the IRCv3.2 CAP spec.
|
||
|
Cap302 Version = 302
|
||
|
)
|