aboutsummaryrefslogtreecommitdiff
path: root/commands/account/account.go
blob: 918d962bdfee9be8532b0ad625579dd556800c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package account

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

var (
	AccountCommands *commands.Commands
)

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