1
0
mirror of https://git.sr.ht/~sircmpwn/aerc synced 2026-01-08 15:51:34 +01:00
aerc/commands/msg/msg.go

17 lines
253 B
Go
Raw Normal View History

package msg
import (
"git.sr.ht/~sircmpwn/aerc/commands"
)
var (
MessageCommands *commands.Commands
)
func register(cmd commands.Command) {
if MessageCommands == nil {
MessageCommands = commands.NewCommands()
}
MessageCommands.Register(cmd)
}