()
| 75 | } |
| 76 | |
| 77 | function todayText() { |
| 78 | const now = new Date(); |
| 79 | const y = now.getFullYear(); |
| 80 | const m = String(now.getMonth() + 1).padStart(2, "0"); |
| 81 | const d = String(now.getDate()).padStart(2, "0"); |
| 82 | return `${y}-${m}-${d}`; |
| 83 | } |
| 84 | |
| 85 | async function request(options) { |
| 86 | const res = await axios.request({ |