Completed minimal Ledger implementation, first tests in chron-cli

This commit is contained in:
2026-02-13 08:03:07 +00:00
parent ca1a3e266b
commit 2c2ce5fd01
5 changed files with 276 additions and 46 deletions

View File

@@ -13,6 +13,6 @@ type EntryStore interface {
type ReferenceStore interface {
Set(ctx context.Context, name string, entryID EntryID) error
Get(ctx context.Context, name string) (EntryID, error)
Get(ctx context.Context, name string) (EntryID, bool, error)
Delete(ctx context.Context, name string) error
}