mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-03-31 06:24:00 -04:00
14 lines
237 B
JavaScript
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
|
|
};
|