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