blob: 65a40562b123b2a01229f6359c8fe39599d3e1c1 (
plain) (
tree)
|
|
package msg
import (
"git.sr.ht/~rjarry/aerc/commands"
)
var MessageCommands *commands.Commands
func register(cmd commands.Command) {
if MessageCommands == nil {
MessageCommands = commands.NewCommands()
}
MessageCommands.Register(cmd)
}
|