示例#1
0
文件: join.go 项目: voxadam/ircflu
func init() {
	joinCmd := JoinCommand{}
	commands.RegisterCommand(&joinCmd)
}
示例#2
0
文件: auth.go 项目: voxadam/ircflu
func init() {
	authCmd := AuthCommand{}
	commands.RegisterCommand(&authCmd)
}
示例#3
0
文件: alias.go 项目: voxadam/ircflu
func init() {
	aliasCmd := AliasCommand{
		aliases: make(map[string]string),
	}
	commands.RegisterCommand(&aliasCmd)
}
示例#4
0
文件: exec.go 项目: voxadam/ircflu
func init() {
	execCmd := ExecCommand{}
	commands.RegisterCommand(&execCmd)
}