Ruin echos dreams

This commit is contained in:
nea 2022-09-22 14:05:20 +02:00
parent e2710bd807
commit 50b8b7449b
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
4 changed files with 173 additions and 134 deletions

View file

@ -1,10 +1,6 @@
package utils
import (
"strings"
)
func Getascii(name string) []string {
func Getascii(name string) string {
none := `!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!
!!!!noascii!!!!
@ -20,11 +16,10 @@ func Getascii(name string) []string {
switch name {
case "Arch Linux":
return strings.Split(arch, "\n")
return arch
default:
return strings.Split(none, "\n")
return none
}
}