mirror of
https://git.klmp200.net/ALFRED/ALFRED.git
synced 2025-01-18 18:46:44 +01:00
Fix formating with go fmt
This commit is contained in:
parent
e786b77f62
commit
30397b9207
@ -16,7 +16,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func Spongify(input_message string) string {
|
func Spongify(input_message string) string {
|
||||||
spongified_message := ""
|
spongified_message := ""
|
||||||
for i, char := range input_message {
|
for i, char := range input_message {
|
||||||
if i%2 == 0 {
|
if i%2 == 0 {
|
||||||
spongified_message += strings.ToLower(string(char))
|
spongified_message += strings.ToLower(string(char))
|
||||||
@ -24,7 +24,7 @@ func Spongify(input_message string) string {
|
|||||||
spongified_message += strings.ToUpper(string(char))
|
spongified_message += strings.ToUpper(string(char))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return spongified_message
|
return spongified_message
|
||||||
}
|
}
|
||||||
|
|
||||||
func Sponge(m *tb.Message) {
|
func Sponge(m *tb.Message) {
|
||||||
|
Loading…
Reference in New Issue
Block a user