0d645bcebd
I'm not sure what are the implications but it seems required. Link: https://github.com/golang/go/issues/20883 Signed-off-by: Robin Jarry <robin@jarry.cc>
16 lines
260 B
Go
16 lines
260 B
Go
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)
|
|
}
|