mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-04 15:46:30 +00:00
4df9c8d6a5
* github.com/russross/meddler v1.0.0 -> v1.0.1 * github.com/gin-gonic/gin v1.6.3 -> v1.7.4 * github.com/go-sql-driver/mysql v1.5.0 -> v1.6.0 * github.com/sirupsen/logrus v1.6.0 -> v1.8.1 * github.com/rs/zerolog v1.18.0 -> v1.25.0
19 lines
671 B
Go
19 lines
671 B
Go
package json
|
|
|
|
// JSONMarshalFunc is used to marshal interface to JSON encoded byte slice.
|
|
// Making it package level instead of embedded in Encoder brings
|
|
// some extra efforts at importing, but avoids value copy when the functions
|
|
// of Encoder being invoked.
|
|
// DO REMEMBER to set this variable at importing, or
|
|
// you might get a nil pointer dereference panic at runtime.
|
|
var JSONMarshalFunc func(v interface{}) ([]byte, error)
|
|
|
|
type Encoder struct{}
|
|
|
|
// AppendKey appends a new key to the output JSON.
|
|
func (e Encoder) AppendKey(dst []byte, key string) []byte {
|
|
if dst[len(dst)-1] != '{' {
|
|
dst = append(dst, ',')
|
|
}
|
|
return append(e.AppendString(dst, key), ':')
|
|
}
|