summaryrefslogtreecommitdiff
path: root/protocol.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-11-19 17:28:30 +0300
committerValery Piashchynski <[email protected]>2020-11-19 17:28:30 +0300
commit71c81a91f9f967e41310077bd26b1dedb0b49556 (patch)
treecce9cb740bae0b9acbfc15d76823174f571a0a6c /protocol.go
parente9595a5c133ff02b765c0b59913593e7f91bc4e7 (diff)
huge linters fix update
Diffstat (limited to 'protocol.go')
-rwxr-xr-xprotocol.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/protocol.go b/protocol.go
index 5e8be37a..fe1f23a7 100755
--- a/protocol.go
+++ b/protocol.go
@@ -3,11 +3,13 @@ package roadrunner
import (
"os"
- json "github.com/json-iterator/go"
+ j "github.com/json-iterator/go"
"github.com/spiral/errors"
"github.com/spiral/goridge/v2"
)
+var json = j.ConfigCompatibleWithStandardLibrary
+
type stopCommand struct {
Stop bool `json:"stop"`
}