16 lines
296 B
Go
16 lines
296 B
Go
package msgview
|
|
|
|
import (
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
|
)
|
|
|
|
var (
|
|
MessageViewCommands *commands.Commands
|
|
)
|
|
|
|
func register(name string, cmd commands.AercCommand) {
|
|
if MessageViewCommands == nil {
|
|
MessageViewCommands = commands.NewCommands()
|
|
}
|
|
MessageViewCommands.Register(name, cmd)
|
|
}
|