feat(watchdog): separate watchdog from startup

- Add /api/v1/watchdog to enable/disable
- Scheduled task now runs every 15 minutes
- Use schtasks command line instead of XML
- Dashboard shows watchdog enabled state
- Preserve watchdog state during install
This commit is contained in:
2026-09-02 00:15:37 +03:00
parent 536ea9a53e
commit 977da8b109
16 changed files with 247 additions and 193 deletions
+6
View File
@@ -8,4 +8,10 @@ func Enable() error { return nil }
func Disable() error { return nil }
func WatchdogEnabled() bool { return false }
func EnableWatchdog() error { return nil }
func DisableWatchdog() error { return nil }
func SyncInstalledPath() error { return nil }