Hey, im loving lambda-api so far.
Quick question, is there a way to add a context to handlers ?
Let's say
app.get("/posts", getPosts);
async function getPosts(req,res,context){
const prisma = context.prisma;
return prisma.posts.findMany({});
}
And this is basically for code splitting