about summary refs log blame commit diff stats
path: root/commands/account/account.go
blob: c590c8aec02a2efcc83c51e6d7c785fda1310daa (plain) (tree)
1
2
3
4


               
                                           











                                                        
package account

import (
	"git.sr.ht/~sircmpwn/aerc/commands"
)

var (
	AccountCommands *commands.Commands
)

func register(name string, cmd commands.AercCommand) {
	if AccountCommands == nil {
		AccountCommands = commands.NewCommands()
	}
	AccountCommands.Register(name, cmd)
}