Utility function to establish and verify a connection to Redis.
Install the package with:
npm install @feathermint/redis-connect
import * as redis from "@feathermint/redis-connect";
async function client(url) {
return await redis.connect(url);
}