mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
import NodeCache from "node-cache";
|
|
|
|
export const cache = new NodeCache({ stdTTL: 3600, checkperiod: 120 });
|
|
|
|
export default cache;
|