mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 12:42:58 -06:00
2c493e38c7
marks.Sensitive
14 lines
186 B
Go
14 lines
186 B
Go
package marks
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
type valueMark string
|
|
|
|
func (m valueMark) GoString() string {
|
|
return "marks." + strings.Title(string(m))
|
|
}
|
|
|
|
var Sensitive = valueMark("sensitive")
|