feedstate: implement + test

This commit is contained in:
nkanaev
2026-05-15 15:53:13 +01:00
parent 54e197ad85
commit 7553824520
4 changed files with 251 additions and 13 deletions

View File

@@ -38,3 +38,7 @@ func New(path string) (*Storage, error) {
}
return &Storage{db: db}, nil
}
func (s *Storage) Close() error {
return s.db.Close()
}