update:update requirements.txt

This commit is contained in:
Lan
2024-10-06 16:30:37 +08:00
parent 9dfbe2869e
commit 17838e51dc
3 changed files with 17 additions and 10 deletions
@@ -6,6 +6,5 @@ export function formatTimestamp(timestamp: string): string {
const hours = date.getHours().toString().padStart(2, '0');
const minutes = date.getMinutes().toString().padStart(2, '0');
const seconds = date.getSeconds().toString().padStart(2, '0');
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
}