/**
* @typedef {object} CACHE
* @property {Map<any, any>} tokens - shopify auth tokens
* @property {Map<any, any>} uninstalledStores
* @property {Map<any, any>} installedStores
* @property {Map<any, any>} shopData - shopify shop info
* @property {Map<any, any>} connect - shopify store api instances
*/
/**
* ### server in-memory cache
* @type {CACHE}
* @exports module:cpb-api/cache
*/
export const CACHE = {
tokens: new Map(),
connect: new Map(),
shopData: new Map(),
installedStores: new Map(),
uninstalledStores: new Map(),
};
export default CACHE;