Question: Are there any plans to support code splitting in workers? i.e: ```typescript export default { fetch(req) { const { something } = await import("./somewhere") return new Response(JSON.stringify(something)) } } ```