(storageUrl: string)
| 105 | }>()("@services/RedisClient") {} |
| 106 | |
| 107 | export const RedisClientLayer = (storageUrl: string) => |
| 108 | Layer.effect(RedisClient, makeRedisClient(makeRedis(storageUrl))) |
| 109 | |
| 110 | function createClient(makeClient: () => Client) { |
| 111 | const client = makeClient() |
nothing calls this directly
no test coverage detected
searching dependent graphs…