aerc/commands/msgview/msgview.go

17 lines
273 B
Go
Raw Normal View History

2019-03-31 03:45:41 +02:00
package msgview
import (
2019-05-18 02:57:10 +02:00
"git.sr.ht/~sircmpwn/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
}