hmm yeah that was my thought too…. are we expected to be manually calling clearTimeout?
hmm yeah that was my thought too…. are we expected to be manually calling clearTimeout?
wrangler config





WorkerEntrypoint , in which case how do I also export the endpoints?wranglerimport { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Cloudflare Workers!'))
app.get('/analyse', (c) => c.text('Hello Analyse endpoint!'))
export default appWorkerEntrypoint