11 lines
108 B
Go
11 lines
108 B
Go
|
package config
|
||
|
|
||
|
type sshBool bool
|
||
|
|
||
|
func (b sshBool) Str() string {
|
||
|
if b {
|
||
|
return "yes"
|
||
|
}
|
||
|
return "no"
|
||
|
}
|