// any server framework goes// here, like express, polka, etc.// frameworks that do not use// web standard Request and Response// objects will need to be mapped.const app =newHono();const lspHandler =createServerProtocolHandler({ storage });app.use('/lsp/*',async(req)=>{awaitlspHandler(req);});