#include"redismodule.h"// RedisModule_Init is defined as a static function and so won't be exported as
// a symbol. Export a version under a slightly different name so that we can
// get access to it from Rust.
intExport_RedisModule_Init(RedisModuleCtx *ctx,constchar*name,intver,intapiver){returnRedisModule_Init(ctx, name, ver, apiver);}