Merge pull request #1792 from slingamn/info

update logo in /INFO response
This commit is contained in:
Shivaram Lingamneni 2021-09-09 21:34:34 -04:00 committed by GitHub
commit cb39c82222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1065,18 +1065,16 @@ func (matcher *elistMatcher) Matches(channel *Channel) bool {
}
var (
infoString1 = []string{
" ___ _ __ __ _ ___ ",
" / _ \\ '__/ _` |/ _ \\ ",
" | __/ | | (_| | (_) |",
` \___|_| \__, |\___/ `,
" __/ | ",
" |___/ ",
"",
"https://ergo.chat/ ",
"https://github.com/ergochat/ergo ",
"",
}
infoString1 = strings.Split(`
__ __ ______ ___ ______ ___
__/ // /_/ ____/ __ \/ ____/ __ \
/_ // __/ __/ / /_/ / / __/ / / /
/_ // __/ /___/ _, _/ /_/ / /_/ /
/_//_/ /_____/_/ |_|\____/\____/
https://ergo.chat/
https://github.com/ergochat/ergo
`, "\n")[1:] // XXX: cut off initial blank line
infoString2 = strings.Split(` Daniel Oakley, DanielOaks, <daniel@danieloaks.net>
Shivaram Lingamneni, slingamn, <slingamn@cs.stanford.edu>
`, "\n")