export default defineEventHandler(async () => {
  const teamsColl = db.collection('teams')

  const cursor = teamsColl.find();
  const teams = await cursor.toArray()

  return teams
});