Constimport { storage } from "@cpod/sdk";
// Common storage (shared across apps)
await storage.common.set("shared-key", { data: "value" });
const shared = await storage.common.get("shared-key");
// Temp storage (auto-expires)
await storage.temp.set("cache-key", data, { ttl: 3600 });
const cached = await storage.temp.get("cache-key");
Global storage object with common and temp namespaces