BUGFIX: time is correct

This commit is contained in:
La Programmatrice Verde
2025-08-20 17:59:57 +02:00
parent f47ed4912a
commit db9e99cc52
5 changed files with 23 additions and 21 deletions

View File

@@ -16,5 +16,7 @@ module.exports = {
return this.hosts;
},
eventEmitter: {},
now: dayjs().format('DD/MM/YYYY HH:mm:ss.sss')
now() {
return dayjs().format('DD/MM/YYYY HH:mm:ss.sss')
}
};