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