mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 21:49:26 +01:00
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const result = await queryCollection(event, 'projects')
|
|
.where('extension', '=', 'md')
|
|
.all()
|
|
|
|
return result
|
|
})
|