about summary refs log blame commit diff stats
path: root/commands/msg/msg.go
blob: ecf21029659b9e4e59b6e637d0db6dd626cee49e (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                           
                                     


                                                        
                                     
 
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)
}