(redisUrl: string)
| 11 | } |
| 12 | |
| 13 | static getInstance(redisUrl: string): RedisCache { |
| 14 | if (!this.instance) { |
| 15 | this.instance = new RedisCache(redisUrl); |
| 16 | } |
| 17 | |
| 18 | return this.instance; |
| 19 | } |
| 20 | |
| 21 | async set( |
| 22 | type: string, |
nothing calls this directly
no outgoing calls
no test coverage detected