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