blob: 35a2ed7c1f3cbcc8630bb30fe29c7cc53b9cbbc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package compose
import (
"git.sr.ht/~sircmpwn/aerc/commands"
)
var (
ComposeCommands *commands.Commands
)
func register(name string, cmd commands.AercCommand) {
if ComposeCommands == nil {
ComposeCommands = commands.NewCommands()
}
ComposeCommands.Register(name, cmd)
}
|