aboutsummaryrefslogblamecommitdiffstats
path: root/commands/account/account.go
blob: fc17fa2d3cdbe60e4bc5d18be71dcf7f64d7eb1c (plain) (tree)
1
2
3
4
5
6
7
8
9


               
                                         

 
                                      
 
                                     


                                                        
                                     
 
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)
}