Fix missing NewEncoder

This commit is contained in:
Filip Figiel 2018-08-17 09:27:19 +02:00
parent 567668943c
commit 5c704908d8

View File

@ -14,4 +14,5 @@ var (
Marshal = json.Marshal
MarshalIndent = json.MarshalIndent
NewDecoder = json.NewDecoder
NewEncoder = json.NewEncoder
)