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
|