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