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