aaf0a0c656
Run `make fmt`. Signed-off-by: Moritz Poldrack <git@moritz.sh> Acked-by: Robin Jarry <robin@jarry.cc>
14 lines
250 B
Go
14 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)
|
|
}
|