I have an existing worker that uses Hono to expose some API endpoints:
const app = new Hono();...export default app;
const app = new Hono();...export default app;
I am trying to add a cron job to this worker but I am continuously getting either a "Handler does not export a scheduled() function" error or a, "worker.fetch is not a function" error.