import prisma from '../../lib/Prisma'
export default async function handle(req, res) {
const feed = await prisma.users.findMany();
res.json(feed);
}