about summary refs log blame commit diff stats
path: root/commands/global.go
blob: 459192f634009ff57b8638df733d334912dca6ae (plain) (tree)
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)
}