First update.

This commit is contained in:
2025-10-11 14:45:08 +08:00
commit 6aa8fb818a
22 changed files with 4036 additions and 0 deletions

6
GetLocalTime.ts Normal file
View File

@@ -0,0 +1,6 @@
export function getLocalTime():Date
{
const now = new Date();
now.setHours(now.getHours() + 8);
return now;
}