mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
8 lines
136 B
Go
8 lines
136 B
Go
package jsonparse
|
|
|
|
import "github.com/tidwall/gjson"
|
|
|
|
func Get(json, path string) interface{} {
|
|
return gjson.Get(json, path).Value()
|
|
}
|