| 81 | } |
| 82 | |
| 83 | int info_getc(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 84 | return info_get(ctx, argv, argc, 'c'); |
| 85 | } |
| 86 | |
| 87 | int info_geti(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 88 | return info_get(ctx, argv, argc, 'i'); |
nothing calls this directly
no test coverage detected