17 lines
286 B
Go
17 lines
286 B
Go
|
package terminal
|
||
|
|
||
|
import (
|
||
|
"git.sr.ht/~sircmpwn/aerc2/commands"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
TerminalCommands *commands.Commands
|
||
|
)
|
||
|
|
||
|
func register(name string, cmd commands.AercCommand) {
|
||
|
if TerminalCommands == nil {
|
||
|
TerminalCommands = commands.NewCommands()
|
||
|
}
|
||
|
TerminalCommands.Register(name, cmd)
|
||
|
}
|