aaf0a0c656
Run `make fmt`. Signed-off-by: Moritz Poldrack <git@moritz.sh> Acked-by: Robin Jarry <robin@jarry.cc>
14 lines
246 B
Go
14 lines
246 B
Go
package msg
|
|
|
|
import (
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
|
)
|
|
|
|
var MessageCommands *commands.Commands
|
|
|
|
func register(cmd commands.Command) {
|
|
if MessageCommands == nil {
|
|
MessageCommands = commands.NewCommands()
|
|
}
|
|
MessageCommands.Register(cmd)
|
|
}
|