package processor

// Store is the abstraction for persisting Records.
// Implement this interface for any storage backend (PocketBase, PostgreSQL, etc.)
type Store interface {
	Get(id string) (Record, error)
	Save(record Record) error
}
