feat: add advanced update management features

This commit is contained in:
2026-05-03 22:55:51 +02:00
parent a22d2e16ea
commit 137290e3d7
7 changed files with 644 additions and 150 deletions

View File

@@ -11,6 +11,9 @@ import (
type Store struct {
LastReminder time.Time `json:"last_reminder"`
LastUpdateCount int `json:"last_update_count"`
LastCheck time.Time `json:"last_check"`
LastSuccess time.Time `json:"last_success"`
LastSummary string `json:"last_summary"`
}
func Load(path string) (Store, error) {