aerc/commands/msgview/msgview.go

17 lines
271 B
Go
Raw Normal View History

2019-03-31 03:45:41 +02:00
package msgview
import (
"git.sr.ht/~rjarry/aerc/commands"
2019-03-31 03:45:41 +02:00
)
var (
MessageViewCommands *commands.Commands
)
func register(cmd commands.Command) {
2019-03-31 03:45:41 +02:00
if MessageViewCommands == nil {
MessageViewCommands = commands.NewCommands()
}
MessageViewCommands.Register(cmd)
2019-03-31 03:45:41 +02:00
}