aboutsummaryrefslogtreecommitdiffstats
path: root/commands/global.go
blob: ec7d623cb72059c5eb855c076745db22ce797a76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package commands

var GlobalCommands *Commands

func register(cmd Command) {
	if GlobalCommands == nil {
		GlobalCommands = NewCommands()
	}
	GlobalCommands.Register(cmd)
}