blob: fb32d8e18724da46b00092690b5a36c7cf60cf1c (
plain) (
tree)
|
|
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)
}
|