aerc/commands/account/account.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
250 B
Go

package account
import (
"git.sr.ht/~rjarry/aerc/commands"
)
var AccountCommands *commands.Commands
func register(cmd commands.Command) {
if AccountCommands == nil {
AccountCommands = commands.NewCommands()
}
AccountCommands.Register(cmd)
}