NetBird-UptimeKuma/shared.js
La Programmatrice Verde 67df0ea9f6 Added timestamps to logs
2025-08-18 16:04:49 +02:00

21 lines
333 B
JavaScript

const dayjs = require('dayjs')
module.exports = {
token: "",
setToken(token) {
this.token = token;
},
getToken() {
return this.token;
},
hosts: [],
setHosts(hosts) {
this.hosts = hosts;
},
getHosts() {
return this.hosts;
},
eventEmitter: {},
now: dayjs().format('DD/MM/YYYY HH:mm:ss.sss')
};