Remove Deno section from main README (no module)

pull/31/head
Samuel Lippert 2022-08-09 14:11:25 -05:00
parent e667634a3d
commit 03d66ea1b3
No known key found for this signature in database
GPG Key ID: 3762857AF8948B2C
1 changed files with 0 additions and 15 deletions

View File

@ -17,21 +17,6 @@ app.get('/', (c) => c.text('foo'))
export default app export default app
``` ```
## Deno
```ts
import { serve } from 'https://deno.land/std/http/server.ts'
import { sentry } from 'https://deno.land/x/hono_sentry/mod.ts'
import { Hono } from 'https://deno.land/x/hono/mod.ts'
const app = new Hono()
app.use('*', sentry())
app.get('/', (c) => c.text('foo'))
serve(app.fetch)
```
## Author ## Author
Yusuke Wada <https://github.com/yusukebe> Yusuke Wada <https://github.com/yusukebe>