import { Hono } from 'hono' const app = new Hono() /** * POST /web/bind — REMOVED (security: unauthenticated session binding). * * Returns 410 Gone to signal clients that this endpoint has been * intentionally deprecated and will not be restored. */ app.all('/bind', c => { return c.json( { error: { type: 'gone', message: '/web/bind has been removed. Use authenticated session creation instead.', }, }, 410, ) }) export default app