7 lines
75 B
Python
7 lines
75 B
Python
|
import threading
|
||
|
|
||
|
|
||
|
class Cache:
|
||
|
cache = {}
|
||
|
lock = threading.Lock()
|