remove blank quotes
Jes Olson jolson@digitalocean.com
Sat, 29 Jan 2022 14:05:31 -0600
1 files changed,
1 insertions(+),
3 deletions(-)
jump to
M
quote/quote.go
→
quote/quote.go
@@ -32,12 +32,10 @@ quoteCollection = append(quoteCollection, "To cause birth is to cause death.")
quoteCollection = append(quoteCollection, "On a long enough timeline the survival rate of everything declines to 0.") quoteCollection = append(quoteCollection, "Please wake up, we all miss you so much.") quoteCollection = append(quoteCollection, "Your memory will become an abstract notion - if it survives at all.") - quoteCollection = append(quoteCollection, "") - quoteCollection = append(quoteCollection, "") } func GetRandomQuote() string { initQuoteCollection() rand.Seed(time.Now().UnixNano()) return quoteCollection[rand.Intn(len(quoteCollection))] -}+}