Fix skills directory

This commit is contained in:
Dominic Ferrando
2026-07-25 20:31:14 -04:00
parent 2652bc5b56
commit b76f91700f
54 changed files with 0 additions and 0 deletions
@@ -0,0 +1,15 @@
import { Elysia } from 'elysia'
const prettyJson = new Elysia()
.mapResponse(({ response }) => {
if (response instanceof Object)
return new Response(JSON.stringify(response, null, 4))
})
.as('scoped')
new Elysia()
.use(prettyJson)
.get('/', () => ({
hello: 'world'
}))
.listen(3000)