예제 #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)
}