mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-04-05 08:53:53 -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
|
|
};
|