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

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

var (
	MessageCommands *commands.Commands
)

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