为什么 `/health` 在运行时可用,Eden 客户端却可能看不到它?
TypeScript
import { treaty } from '@elysia/eden'
import { Elysia } from 'elysia'
const app = new Elysia()
app.get('/health', () => ({ ok: true }))
type App = typeof app
const api = treaty<App>('http://localhost:3000')
await api.health.get()