make it actually work

This commit is contained in:
Jeff Carr 2025-09-21 20:48:34 -05:00
parent f6b19522c6
commit 25f2b0fc35
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ func QuestionUser(msg string) bool {
case "n":
return false
default:
if strings.HasPrefix(line, "y") {
return true
}
return false
}
}
return false