redis/src/asciilogo.h

27 lines
1.4 KiB
C
Raw Normal View History

/*
* Copyright (c) 2009-Present, Redis Ltd.
* All rights reserved.
*
* Licensed under your choice of the Redis Source Available License 2.0
* (RSALv2) or the Server Side Public License v1 (SSPLv1).
*/
2020-03-07 12:38:27 +01:00
const char *ascii_logo =
2011-04-13 10:58:21 +02:00
" _._ \n"
" _.-``__ ''-._ \n"
" _.-`` `. `_. ''-._ Redis %s (%s/%d) %s bit\n"
2021-03-10 18:11:16 +01:00
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
2011-04-13 10:58:21 +02:00
" ( ' , .-` | `, ) Running in %s mode\n"
" |`-._`-...-` __...-.``-._|'` _.-'| Port: %d\n"
" | `-._ `._ / _.-' | PID: %ld\n"
" `-._ `-._ `-./ _.-' _.-' \n"
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
2021-03-10 18:11:16 +01:00
" | `-._`-._ _.-'_.-' | https://redis.io \n"
2011-04-13 10:58:21 +02:00
" `-._ `-._`-.__.-'_.-' _.-' \n"
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
" | `-._`-._ _.-'_.-' | \n"
" `-._ `-._`-.__.-'_.-' _.-' \n"
" `-._ `-.__.-' _.-' \n"
" `-._ _.-' \n"
" `-.__.-' \n\n";