mirror of https://github.com/aldy505/bob.git
chore: error definition var
This commit is contained in:
parent
a4dd89213f
commit
a72d6174fa
9
bob.go
9
bob.go
|
@ -1,6 +1,13 @@
|
||||||
package bob
|
package bob
|
||||||
|
|
||||||
import "github.com/lann/builder"
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/lann/builder"
|
||||||
|
)
|
||||||
|
|
||||||
|
var ErrEmptyTable = errors.New("sql: no rows in result set")
|
||||||
|
var ErrEmptyTablePgx = errors.New("no rows in result set")
|
||||||
|
|
||||||
// BobBuilderType is the type for BobBuilder
|
// BobBuilderType is the type for BobBuilder
|
||||||
type BobBuilderType builder.Builder
|
type BobBuilderType builder.Builder
|
||||||
|
|
Loading…
Reference in New Issue