This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/errors/types.go
Matthew Dillon efb0cc13fa Golint
2015-10-05 10:34:21 -07:00

8 lines
156 B
Go

package errors
import "errors"
var (
// ErrSourceNotByteSlice when not a byte-slice.
ErrSourceNotByteSlice = errors.New("Scan source was not []byte")
)