shad-go/ledger/ledger.go
2022-03-31 14:19:47 +03:00

9 lines
144 B
Go

//go:build !solution
package ledger
import "context"
func New(ctx context.Context, dsn string) (Ledger, error) {
panic("not implemented")
}