Beispiel #1
0
func init() {
	aliasCmd := AliasCommand{
		aliases: make(map[string]string),
	}
	commands.RegisterCommand(&aliasCmd)
}
Beispiel #2
0
func init() {
	joinCmd := JoinCommand{}
	commands.RegisterCommand(&joinCmd)
}
Beispiel #3
0
func init() {
	execCmd := ExecCommand{}
	commands.RegisterCommand(&execCmd)
}
Beispiel #4
0
func init() {
	sendCmd := SendCommand{}
	commands.RegisterCommand(&sendCmd)
}
Beispiel #5
0
func init() {
	authCmd := AuthCommand{}
	commands.RegisterCommand(&authCmd)
}
Beispiel #6
0
func init() {
	partCmd := PartCommand{}
	commands.RegisterCommand(&partCmd)
}