mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Migrate json wrapper and badjson to library
This commit is contained in:
parent
ba13aad0e5
commit
d962a01bf7
8 changed files with 509 additions and 0 deletions
21
common/json/std.go
Normal file
21
common/json/std.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
//go:build !go1.21 || without_contextjson
|
||||
|
||||
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
|
||||
RawMessage = json.RawMessage
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue