2019-03-31 03:45:41 +02:00
|
|
|
package msgview
|
|
|
|
|
|
|
|
import (
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
2019-03-31 03:45:41 +02:00
|
|
|
)
|
|
|
|
|
2022-07-31 22:16:40 +02:00
|
|
|
var MessageViewCommands *commands.Commands
|
2019-03-31 03:45:41 +02:00
|
|
|
|
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
|
|
|
}
|