All checks were successful
Build / build (push) Successful in 41s
Reviewed-on: #4
8 lines
220 B
Go
8 lines
220 B
Go
package mysqlite
|
|
|
|
import "errors"
|
|
|
|
var ErrNoRows = errors.New("mysqlite: no rows returned")
|
|
var ErrMissingBind = errors.New("mysqlite: missing bind value")
|
|
var ErrMissingScan = errors.New("mysqlite: missing scan value")
|