mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
19 lines
312 B
Go
19 lines
312 B
Go
|
package json
|
||
|
|
||
|
import "encoding/json"
|
||
|
|
||
|
var (
|
||
|
Marshal = json.Marshal
|
||
|
Unmarshal = json.Unmarshal
|
||
|
NewEncoder = json.NewEncoder
|
||
|
NewDecoder = json.NewDecoder
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
Encoder = json.Encoder
|
||
|
Decoder = json.Decoder
|
||
|
Token = json.Token
|
||
|
Delim = json.Delim
|
||
|
SyntaxError = json.SyntaxError
|
||
|
)
|