mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-26 13:59:44 +01:00
15 lines
338 B
Go
15 lines
338 B
Go
// Copyright (c) 2017 Daniel Oaks <daniel@danieloaks.net>
|
|
// released under the MIT license
|
|
|
|
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
|
|
)
|