aboutsummaryrefslogblamecommitdiffstats
path: root/commands/compose/compose.go
blob: f325e4e2ae7608624b712fb2004f27dbfb8058e4 (plain) (tree)
1
2
3
4
5
6
7
8
9


               
                                         

 
                                      
 
                                     


                                                        
                                     
 
package compose

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

var ComposeCommands *commands.Commands

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