Pick up the single-page application as frontend

This commit is contained in:
2024-06-24 23:06:20 +08:00
parent 86b2cd8140
commit 1cf675b23a
65 changed files with 2257 additions and 1410 deletions

3
web/src/scripts/request.ts Executable file
View File

@@ -0,0 +1,3 @@
export async function request(input: string, init?: RequestInit) {
return await fetch(input, init)
}