mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-17 04:53:20 +00:00
Backport #37214 The only conflict is go.mod Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
26 lines
510 B
Go
26 lines
510 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go:build !goexperiment.jsonv2
|
|
|
|
package json
|
|
|
|
import (
|
|
"encoding/json" //nolint:depguard // this package wraps it
|
|
"io"
|
|
)
|
|
|
|
func getDefaultJSONHandler() Interface {
|
|
return jsonV1{}
|
|
}
|
|
|
|
func MarshalKeepOptionalEmpty(v any) ([]byte, error) {
|
|
return DefaultJSONHandler.Marshal(v)
|
|
}
|
|
|
|
func NewDecoderCaseInsensitive(reader io.Reader) Decoder {
|
|
return DefaultJSONHandler.NewDecoder(reader)
|
|
}
|
|
|
|
type Value = json.RawMessage
|