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


               
                                           





                                          
                                     


                                                        
                                     
 
package compose

import (
	"git.sr.ht/~sircmpwn/aerc/commands"
)

var (
	ComposeCommands *commands.Commands
)

func register(cmd commands.Command) {
	if ComposeCommands == nil {
		ComposeCommands = commands.NewCommands()
	}
	ComposeCommands.Register(cmd)
}