mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
14 lines
314 B
Go
14 lines
314 B
Go
package getter
|
|
|
|
import (
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
var json jsoniter.API
|
|
|
|
func init() {
|
|
// NOTE(fredbi): attention, this configuration rounds floats down to 6 digits
|
|
// For finer-grained config, see: https://pkg.go.dev/github.com/json-iterator/go#section-readme
|
|
json = jsoniter.ConfigFastest
|
|
}
|