diff --git a/README.md b/README.md index 27d4f37d..dcda10d8 100644 --- a/README.md +++ b/README.md @@ -17,21 +17,6 @@ app.get('/', (c) => c.text('foo')) 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 Yusuke Wada