Skip to content

Latest commit

 

History

History

encoding

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Swap out the json implementation by overwriting the types and variables.

Here the standard json implementation is swapped out with jsoniter:

package main

import (
    "github.com/discordpkg/gateway/encoding"
    jsoniter "github.com/json-iterator/go"
)

var j = jsoniter.ConfigCompatibleWithStandardLibrary

func init() {
    encoding.Marshal = j.Marshal
    encoding.Unmarshal = j.Unmarshal
}

The idea here is that you may also switch to a different format such as ETF:

package main

import (
    "github.com/JakeMakesStuff/go-erlpack"
    "github.com/discordpkg/gateway/encoding"
)

func init() {
    encoding.Marshal = erlpack.Pack
    encoding.Unmarshal = erlpack.Unpack
}