WIP Scaffholding

This commit is contained in:
2026-02-09 12:32:45 +08:00
parent 138825a074
commit 55101752f5
16 changed files with 73 additions and 0 deletions

12
core/ledger.go Normal file
View File

@@ -0,0 +1,12 @@
package core
type Ledger struct {
entryStore EntryStore
payloadStore PayloadStore
LedgerID LedgerID
}
func NewLedger(entryStore EntryStore, payloadStore PayloadStore) (*Ledger, error) {
panic("unimplemented")
}