4 lines
232 B
TypeScript
4 lines
232 B
TypeScript
import NodeCache from "node-cache";
|
|
export const songData = new NodeCache( { checkperiod: 0 } );
|
|
export const songNameCache = new NodeCache( { checkperiod: 0} );
|
|
export const globalMemoryStorage = new NodeCache( { checkperiod: 0} ); |