Files
SuBlog/server/routes/api/wyy.ts
T
sutong b7addb5c7a chore: 初始化项目仓库
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 21:27:39 +08:00

9 lines
222 B
TypeScript

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
}
})