aerc/commands/global.go

13 lines
201 B
Go
Raw Normal View History

2019-03-21 21:30:23 +01:00
package commands
var (
GlobalCommands *Commands
)
func register(name string, cmd AercCommand) {
if GlobalCommands == nil {
GlobalCommands = NewCommands()
}
GlobalCommands.Register(name, cmd)
}