woodpecker/pipeline/backend/types/secret.go

9 lines
188 B
Go

package types
// Secret defines a runtime secret
type Secret struct {
Name string `json:"name,omitempty"`
Value string `json:"value,omitempty"`
Mask bool `json:"mask,omitempty"`
}