summaryrefslogtreecommitdiff
path: root/commands/compose/compose.go
blob: 563dcd1b4a053fb71db6fa7974aa8f254f820273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package compose

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

var (
	ComposeCommands *commands.Commands
)

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