mirror of https://github.com/minio/minio.git
11 lines
207 B
Go
11 lines
207 B
Go
|
//+build appengine
|
||
|
|
||
|
package gjson
|
||
|
|
||
|
func getBytes(json []byte, path string) Result {
|
||
|
return Get(string(json), path)
|
||
|
}
|
||
|
func fillIndex(json string, c *parseContext) {
|
||
|
// noop. Use zero for the Index value.
|
||
|
}
|