SSHSecure/config/type.go

11 lines
108 B
Go

package config
type sshBool bool
func (b sshBool) Str() string {
if b {
return "yes"
}
return "no"
}