Files
unifi-voucher-site/modules/cache.js
2025-08-26 18:35:20 +02:00

14 lines
237 B
JavaScript

/**
* Internal application cache
*
* @type {{unifi: {siteUUID: null}, vouchers: *[], guests: *[], updated: number}}
*/
module.exports = {
unifi: {
siteUUID: null
},
vouchers: [],
guests: [],
updated: 0
};