| 77 | } |
| 78 | |
| 79 | int info_gets(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 80 | return info_get(ctx, argv, argc, 's'); |
| 81 | } |
| 82 | |
| 83 | int info_getc(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 84 | return info_get(ctx, argv, argc, 'c'); |
nothing calls this directly
no test coverage detected