1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
package commands
import (
"fmt"
"time"
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/lib/log"
)
type Version struct{}
func init() {
Register(Version{})
}
func (Version) Description() string {
return "Display the version of the running aerc instance."
}
func (Version) Context() CommandContext {
return GLOBAL
}
func (Version) Aliases() []string {
return []string{"version"}
}
func (p Version) Execute(args []string) error {
app.PushStatus(fmt.Sprint("aerc "+log.BuildInfo), 20*time.Second)
return nil
}
|