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

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

var (
	MessageViewCommands *commands.Commands
)

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