Rework engine to apply changes at the end & add pushover notification

This commit is contained in:
William Bouzourène 2025-03-17 16:57:41 +01:00
parent 4b1861fa9b
commit 50dcc9d994
6 changed files with 186 additions and 57 deletions

View file

@ -11,6 +11,11 @@ type Config struct {
Hetzner struct {
ApiToken string `env:"HETZNER_API_TOKEN"`
}
PushOver struct {
Enable bool `env:"PUSHOVER_ENABLE"`
AppKey string `env:"PUSHOVER_APP_KEY"`
UserKey string `env:"PUSHOVER_USER_KEY"`
}
}
var configParsed bool