| /** | |
| * BaseMemory | |
| * | |
| * Abstract memory class | |
| * | |
| * @module src/memory/base-memory.js | |
| */ | |
| export class BaseMemory { | |
| constructor(options = {}) { | |
| // TODO: Implement constructor | |
| throw new Error('BaseMemory not yet implemented'); | |
| } | |
| // TODO: Add methods | |
| } | |
| export default BaseMemory; | |