mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
bidichk checks for dangerous unicode character sequences (https://github.com/golangci/golangci-lint/pull/2330)
15 lines
318 B
Go
15 lines
318 B
Go
package yaml
|
|
|
|
import "gopkg.in/yaml.v2"
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
|
|
type Codec struct{}
|
|
|
|
func (Codec) Encode(v interface{}) ([]byte, error) {
|
|
return yaml.Marshal(v)
|
|
}
|
|
|
|
func (Codec) Decode(b []byte, v interface{}) error {
|
|
return yaml.Unmarshal(b, v)
|
|
}
|