mirror of
https://github.com/minio/minio.git
synced 2024-12-27 15:45:55 -05:00
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.
|
||
|
}
|