6 lines
88 B
Python
6 lines
88 B
Python
|
|
class XICCache:
|
||
|
|
def __init__(self):
|
||
|
|
self.cache = {}
|
||
|
|
|
||
|
|
xic_cache = XICCache()
|