WIP Scaffholding
This commit is contained in:
12
core/ledger.go
Normal file
12
core/ledger.go
Normal 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")
|
||||
}
|
||||
Reference in New Issue
Block a user