chore: 初始化项目仓库

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 21:27:39 +08:00
commit b7addb5c7a
50 changed files with 15964 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
export default defineEventHandler(async () => {
try {
const raw = await $fetch<string>('https://keai.icu/apiwyy/api', { responseType: 'text' })
return JSON.parse(raw as string)
} catch {
return null
}
})