drone-yaml/yaml/pretty/signature.go

16 lines
339 B
Go
Raw Normal View History

2019-01-23 00:44:17 +01:00
package pretty
import (
"github.com/drone/drone-yaml/yaml"
)
// helper function pretty prints the signature resource.
func printSignature(w writer, v *yaml.Signature) {
w.WriteString("---")
w.WriteTagValue("version", v.Version)
w.WriteTagValue("kind", v.Kind)
w.WriteTagValue("hmac", v.Hmac)
w.WriteByte('\n')
w.WriteByte('\n')
}