mirror of
https://github.com/asdine/storm.git
synced 2025-10-04 14:32:46 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package storm
|
|
|
|
import "errors"
|
|
|
|
// Errors
|
|
var (
|
|
ErrNoID = errors.New("missing struct tag id or ID field")
|
|
)
|