drone-yaml/yaml/pretty/signature.go
2019-01-22 15:44:17 -08:00

16 lines
339 B
Go

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')
}