Skip to content

Instantly share code, notes, and snippets.

@fu-sen
Created February 16, 2026 07:54
Show Gist options
  • Select an option

  • Save fu-sen/fecf8b96816092e555220027203987a3 to your computer and use it in GitHub Desktop.

Select an option

Save fu-sen/fecf8b96816092e555220027203987a3 to your computer and use it in GitHub Desktop.
Output "410 Gone" with Hono
import { Hono } from 'hono'
const app = new Hono()
app.all('*', (c) => {
c.status(410)
return c.text('410 Gone')
})
export default app
@fu-sen
Copy link
Author

fu-sen commented Feb 16, 2026

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment