blob: 7b6fb12988fbae254f679c82892806cedabcfb8f (
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)
}
|