added gjson-safe comment

This commit is contained in:
Josh Baker 2017-02-05 09:10:42 -07:00
parent e3f249f4fd
commit 09d1c5c5bc
2 changed files with 4 additions and 2 deletions

View File

@ -13,8 +13,6 @@
GJSON is a Go package that provides a [very fast](#performance) and simple way to get a value from a json document. The purpose for this library it to give efficient json indexing for the [BuntDB](https://github.com/tidwall/buntdb) project.
For a command line interface check out [JSONed](https://github.com/tidwall/jsoned).
Getting Started
===============

View File

@ -4,6 +4,10 @@ package gjson
import (
"reflect"
"strconv"
// It's totally safe to use this package, but in case your
// project or organization restricts the use of 'unsafe',
// there's the "github.com/tidwall/gjson-safe" package.
"unsafe"
"github.com/tidwall/match"