mirror of
https://github.com/joyieldInc/predixy.git
synced 2025-12-24 22:46:41 +08:00
17 lines
294 B
C++
17 lines
294 B
C++
/*
|
|
* predixy - A high performance and full features proxy for redis.
|
|
* Copyright (C) 2017 Joyield, Inc. <joyield.com@gmail.com>
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "Reply.h"
|
|
|
|
const char* Reply::TypeStr[Sentinel] = {
|
|
"None",
|
|
"Status",
|
|
"Err",
|
|
"Str",
|
|
"Int",
|
|
"Array"
|
|
};
|