123456789101112131415161718192021 |
- // Copyright 2021 ls. All rights reserved.
- //go:build !jsoniter
- // +build !jsoniter
- package json
- import "encoding/json"
- var (
- // Marshal is exported by sacred/json package.
- Marshal = json.Marshal
- // Unmarshal is exported by sacred/json package.
- Unmarshal = json.Unmarshal
- // MarshalIndent is exported by sacred/json package.
- MarshalIndent = json.MarshalIndent
- // NewDecoder is exported by sacred/json package.
- NewDecoder = json.NewDecoder
- // NewEncoder is exported by sacred/json package.
- NewEncoder = json.NewEncoder
- )
|