8 lines
82 B
Go
8 lines
82 B
Go
package model
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNilPoint = errors.New("未知参数")
|
|
)
|