9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
|
export default defineEventHandler(async () => {
|
||
|
const teamsColl = db.collection('teams')
|
||
|
|
||
|
const cursor = teamsColl.find();
|
||
|
const teams = await cursor.toArray()
|
||
|
|
||
|
return teams
|
||
|
});
|