class MemoryCache implements Cacheimport { MemoryCache } from "https://deno.land/x/s3si@gui-v0.4.16/src/cache.ts"; Propertiesprivatecache: Record<string, unknown>Methodsread<T>(key: string): Promise<T | undefined>write<T>(key: string, value: T): Promise<void>