23 lines
324 B
Go
23 lines
324 B
Go
package hooks
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"git.sr.ht/~rjarry/aerc/config"
|
|
)
|
|
|
|
type AercShutdown struct {
|
|
Lifetime time.Duration
|
|
}
|
|
|
|
func (a *AercShutdown) Cmd() string {
|
|
return config.Hooks.AercShutdown
|
|
}
|
|
|
|
func (a *AercShutdown) Env() []string {
|
|
return []string{
|
|
fmt.Sprintf("AERC_LIFETIME=%s", a.Lifetime.String()),
|
|
}
|
|
}
|