File size: 114 Bytes
29cdc9d | 1 2 3 4 5 | #!/usr/bin/env python3
class MemoryEngine:
def store(self, key, value):
print(f"[MEM] Storing {key}")
|
29cdc9d | 1 2 3 4 5 | #!/usr/bin/env python3
class MemoryEngine:
def store(self, key, value):
print(f"[MEM] Storing {key}")
|