aerc/commands/msg/msg.go
Moritz Poldrack aaf0a0c656 lint: apply new formatting rules
Run `make fmt`.

Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
2022-08-01 10:44:52 +02:00

15 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)
}