(redisUrl: string)
| 7 | private static instance: RedisCache; |
| 8 | |
| 9 | constructor(redisUrl: string) { |
| 10 | this.client = new Redis(redisUrl); |
| 11 | } |
| 12 | |
| 13 | static getInstance(redisUrl: string): RedisCache { |
| 14 | if (!this.instance) { |
nothing calls this directly
no outgoing calls
no test coverage detected