diff options
author | Valery Piashchynski <[email protected]> | 2020-03-20 18:15:41 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-03-20 18:15:41 +0300 |
commit | 96e6686c5fa55e5b055fe3d7a4635e272e69c3ac (patch) | |
tree | eb8b7f243db993351bb7867de4f0a732b03a7a98 /service/health | |
parent | ca497b21bcc33361867d16e1709c55f0313128a7 (diff) |
Replace std json package with github.com/json-iterator/go
Diffstat (limited to 'service/health')
-rw-r--r-- | service/health/config_test.go | 2 | ||||
-rw-r--r-- | service/health/service_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/service/health/config_test.go b/service/health/config_test.go index 9068f2ca..0b4af817 100644 --- a/service/health/config_test.go +++ b/service/health/config_test.go @@ -1,7 +1,7 @@ package health import ( - "encoding/json" + json "github.com/json-iterator/go" "testing" "github.com/spiral/roadrunner/service" diff --git a/service/health/service_test.go b/service/health/service_test.go index e8685548..f5426434 100644 --- a/service/health/service_test.go +++ b/service/health/service_test.go @@ -1,7 +1,7 @@ package health import ( - "encoding/json" + json "github.com/json-iterator/go" "io/ioutil" "net/http" "testing" |