mcp-ynab
Version:
Model Context Protocol server for YNAB integration
15 lines (12 loc) • 527 B
JavaScript
/**
* CacheManager - Enhanced with GlobalCacheManager integration
* Maintains backward compatibility while enabling global cache optimization
*
* This is a drop-in replacement for the original CacheManager that:
* 1. Maintains the exact same interface
* 2. Tries global cache first for supported operations
* 3. Falls back to traditional caching for unsupported operations
* 4. Provides zero-change integration for existing tools
*/
import { CacheManager } from './cache-compatibility.js';
export { CacheManager };