initialize static method

Future<void> initialize({
  1. int maxStaleHours = 24,
})

Initialize cache

Implementation

static Future<void> initialize({
  int maxStaleHours = 24,
}) async {
  if (_initialized) return;

  // Cache initialization disabled for now
  // Will be re-enabled with proper implementation
  _initialized = true;
}