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