0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
hono/benchmarks/deno/opine.ts
2022-07-02 17:51:59 +09:00

19 lines
571 B
TypeScript

import { opine } from 'https://deno.land/x/opine@2.2.0/mod.ts'
const app = opine()
app.get('/user', () => {})
app.get('/user/comments', () => {})
app.get('/user/avatar', () => {})
app.get('/user/lookup/email/:address', () => {})
app.get('/event/:id', () => {})
app.get('/event/:id/comments', () => {})
app.post('/event/:id/comments', () => {})
app.post('/status', () => {})
app.get('/very/deeply/nested/route/hello/there', () => {})
app.get('/user/lookup/username/:username', (req, res) => {
res.send({ message: `Hello ${req.params.username}` })
})
app.listen(8000)