Hono is purely for the `fetch` handler so if you mean you want `fetch` w/ Hono and `queue` handlers

Hono is purely for the
fetch
handler so if you mean you want
fetch
w/ Hono and queue handlers in the same project, then just do it like this

export default {
  fetch: app.fetch,
  async queue(...) { ... }
}
Was this page helpful?