Files
nextjs-elysia-vote/.kilocode/skills/elysiajs/examples/basic.ts
2026-04-17 07:21:17 +00:00

10 lines
168 B
TypeScript

import { Elysia, t } from 'elysia'
new Elysia()
.get('/', 'Hello Elysia')
.post('/', ({ body: { name } }) => name, {
body: t.Object({
name: t.String()
})
})