v0.3.9 config auto-reload added

This commit is contained in:
2025-07-22 13:30:37 -04:00
parent f5daa00592
commit 3c74a6336e
7 changed files with 513 additions and 47 deletions

View File

@ -10,6 +10,7 @@ type Config struct {
// Runtime behavior flags
DisableStatusReporter bool `toml:"disable_status_reporter"`
ConfigAutoReload bool `toml:"config_auto_reload"`
// Internal flag indicating demonized child process
BackgroundDaemon bool `toml:"background-daemon"`

View File

@ -26,6 +26,7 @@ func defaults() *Config {
// Runtime behavior defaults
DisableStatusReporter: false,
ConfigAutoReload: false,
// Child process indicator
BackgroundDaemon: false,