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
|
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
func register(cmd commands.Command) {
|
2019-03-31 03:45:41 +02:00
|
|
|
if MessageViewCommands == nil {
|
|
|
|
MessageViewCommands = commands.NewCommands()
|
|
|
|
}
|
2019-06-27 19:33:11 +02:00
|
|
|
MessageViewCommands.Register(cmd)
|
2019-03-31 03:45:41 +02:00
|
|
|
}
|