shad-go/ledger/ledger.go

10 lines
144 B
Go
Raw Normal View History

2022-03-31 11:19:47 +00:00
//go:build !solution
package ledger
import "context"
func New(ctx context.Context, dsn string) (Ledger, error) {
panic("not implemented")
}