about summary refs log blame commit diff stats
path: root/commands/account/account.go
blob: 9c900872d5cc41027e6b8e9dc19d8a3a03d35654 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


               
                                           





                                          
                                     


                                                        
                                     
 
package account

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

var (
	AccountCommands *commands.Commands
)

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