gorepost/bot/invite.go

21 lines
420 B
Go

// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package bot
import (
"github.com/arachnist/gorepost/irc"
)
func invite(output func(irc.Message), msg irc.Message) {
output(irc.Message{
Command: "JOIN",
Params: []string{msg.Trailing},
})
}
func init() {
addCallback("INVITE", "invitki", invite)
}