Files
storm/errors.go
2016-03-07 23:31:34 +01:00

9 lines
109 B
Go

package storm
import "errors"
// Errors
var (
ErrNoID = errors.New("missing struct tag id or ID field")
)