File size: 206 Bytes
101858b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import time
class MemoryForge:
    def __init__(self):
        self.memory_log = []

    def store(self, kind, content):
        self.memory_log.append({"type": kind, "data": content, "time": time.time()})