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


               
                                         





                                          
                                     


                                                        
                                     
 
package account

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

var (
	AccountCommands *commands.Commands
)

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