mirror of
https://github.com/beego/bee.git
synced 2024-10-31 18:50:54 +00:00
refactor: optimized code
This commit is contained in:
parent
de6e732441
commit
da530d986c
@ -153,8 +153,10 @@ func AskForConfirmation() bool {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
beeLogger.Log.Fatalf("%s", err)
|
beeLogger.Log.Fatalf("%s", err)
|
||||||
}
|
}
|
||||||
okayResponses := []string{"y", "Y", "yes", "Yes", "YES"}
|
response = strings.ToLower(strings.TrimSpace(response))
|
||||||
nokayResponses := []string{"n", "N", "no", "No", "NO"}
|
|
||||||
|
okayResponses := []string{"y", "yes"}
|
||||||
|
nokayResponses := []string{"n", "no"}
|
||||||
if containsString(okayResponses, response) {
|
if containsString(okayResponses, response) {
|
||||||
return true
|
return true
|
||||||
} else if containsString(nokayResponses, response) {
|
} else if containsString(nokayResponses, response) {
|
||||||
|
Loading…
Reference in New Issue
Block a user