()
| 17 | import path from 'path'; |
| 18 | import fs from 'fs'; |
| 19 | function formatTime() { |
| 20 | const now = new Date(); |
| 21 | const options = { |
| 22 | hour: '2-digit', |
| 23 | minute: '2-digit', |
| 24 | hour12: false, |
| 25 | timeZone: config.timeZone || 'UTC' |
| 26 | }; |
| 27 | return now.toLocaleTimeString('en-US', options); |
| 28 | } |
| 29 | const menuStyles = [ |
| 30 | { |
| 31 | render({ _title, info, categories, prefix }) { |