(self)
| 53 | |
| 54 | class IpCache: |
| 55 | def __init__(self): |
| 56 | self.cache_client: AbstractCache = CacheFactory.create_cache(cache_type=config.CACHE_TYPE_REDIS) |
| 57 | |
| 58 | def set_ip(self, ip_key: str, ip_value_info: str, ex: int): |
| 59 | """ |
nothing calls this directly
no test coverage detected