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