feat: add bun-fullstack agent and update skills
This commit is contained in:
9
.agent/skills/tech-stack/elysiajs/examples/basic.ts
Normal file
9
.agent/skills/tech-stack/elysiajs/examples/basic.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Elysia, t } from 'elysia'
|
||||
|
||||
new Elysia()
|
||||
.get('/', 'Hello Elysia')
|
||||
.post('/', ({ body: { name } }) => name, {
|
||||
body: t.Object({
|
||||
name: t.String()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user