13 lines
220 B
Go
13 lines
220 B
Go
package core
|
|
|
|
type Ledger struct {
|
|
entryStore EntryStore
|
|
payloadStore PayloadStore
|
|
|
|
LedgerID LedgerID
|
|
}
|
|
|
|
func NewLedger(entryStore EntryStore, payloadStore PayloadStore) (*Ledger, error) {
|
|
panic("unimplemented")
|
|
}
|