8 lines
92 B
Go
8 lines
92 B
Go
package model
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrQueryType = errors.New("query type no support")
|
|
)
|