All checks were successful
Build / build (push) Successful in 1m9s
Reviewed-on: #3
7 lines
156 B
Go
7 lines
156 B
Go
package mysqlite
|
|
|
|
import "errors"
|
|
|
|
var ErrNoRows = errors.New("mysqlite: no rows returned")
|
|
var ErrMissingBind = errors.New("mysqlite: missing bind value")
|