mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
700 B
35 lines
700 B
// Copyright 2025 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package json |
|
|
|
import ( |
|
"bytes" |
|
"io" |
|
|
|
"github.com/goccy/go-json" |
|
) |
|
|
|
var _ Interface = jsonGoccy{} |
|
|
|
type jsonGoccy struct{} |
|
|
|
func (jsonGoccy) Marshal(v any) ([]byte, error) { |
|
return json.Marshal(v) |
|
} |
|
|
|
func (jsonGoccy) Unmarshal(data []byte, v any) error { |
|
return json.Unmarshal(data, v) |
|
} |
|
|
|
func (jsonGoccy) NewEncoder(writer io.Writer) Encoder { |
|
return json.NewEncoder(writer) |
|
} |
|
|
|
func (jsonGoccy) NewDecoder(reader io.Reader) Decoder { |
|
return json.NewDecoder(reader) |
|
} |
|
|
|
func (jsonGoccy) Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error { |
|
return json.Indent(dst, src, prefix, indent) |
|
}
|
|
|