Example #1
0
File: alias.go Project: pepl/ircflu
func init() {
	aliasCmd := AliasCommand{
		aliases: make(map[string]string),
	}
	commands.RegisterCommand(&aliasCmd)
}
Example #2
0
File: join.go Project: pepl/ircflu
func init() {
	joinCmd := JoinCommand{}
	commands.RegisterCommand(&joinCmd)
}
Example #3
0
File: exec.go Project: pepl/ircflu
func init() {
	execCmd := ExecCommand{}
	commands.RegisterCommand(&execCmd)
}
Example #4
0
File: send.go Project: pepl/ircflu
func init() {
	sendCmd := SendCommand{}
	commands.RegisterCommand(&sendCmd)
}
Example #5
0
File: auth.go Project: pepl/ircflu
func init() {
	authCmd := AuthCommand{}
	commands.RegisterCommand(&authCmd)
}
Example #6
0
File: part.go Project: pepl/ircflu
func init() {
	partCmd := PartCommand{}
	commands.RegisterCommand(&partCmd)
}