| 85 | } |
| 86 | |
| 87 | int info_geti(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 88 | return info_get(ctx, argv, argc, 'i'); |
| 89 | } |
| 90 | |
| 91 | int info_getu(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { |
| 92 | return info_get(ctx, argv, argc, 'u'); |
nothing calls this directly
no test coverage detected