mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-05 20:44:04 +00:00
Update vendor
* go-telegram-bot-api/telegram-bot-api * lrstanley/girc * matterbridge/gomatrix
This commit is contained in:
6
vendor/github.com/lrstanley/girc/commands.go
generated
vendored
6
vendor/github.com/lrstanley/girc/commands.go
generated
vendored
@ -359,3 +359,9 @@ func (cmd *Commands) List(channels ...string) {
|
||||
func (cmd *Commands) Whowas(user string, amount int) {
|
||||
cmd.c.Send(&Event{Command: WHOWAS, Params: []string{user, string(amount)}})
|
||||
}
|
||||
|
||||
// Monitor sends a MONITOR query to the server. The results of the query
|
||||
// depends on the given modifier, see https://ircv3.net/specs/core/monitor-3.2.html
|
||||
func (cmd *Commands) Monitor(modifier rune, args ...string) {
|
||||
cmd.c.Send(&Event{Command: MONITOR, Params: append([]string{string(modifier)}, args...)})
|
||||
}
|
||||
|
Reference in New Issue
Block a user