16 lines
297 B
Go
16 lines
297 B
Go
// Package gjson_hack ...
|
|
//
|
|
// Description : filter ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2024-11-30 19:14
|
|
package gjson_hack
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDataIsNotObject = errors.New("data is not an object")
|
|
ErrDataIsNotArray = errors.New("data is not an array")
|
|
)
|