11 lines
258 B
Go
11 lines
258 B
Go
|
package core
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrNoMapPointer = errors.New("mp should be a map's pointer")
|
||
|
ErrNoStructPointer = errors.New("mp should be a map's pointer")
|
||
|
ErrNotExist = errors.New("Not exist")
|
||
|
ErrIgnore = errors.New("Ignore")
|
||
|
)
|