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


                
                                         





                                           
                                     


                                                         
                                      
 
package terminal

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

var (
	TerminalCommands *commands.Commands
)

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