From 03d66ea1b36a4f978ed8bf4dc74bdbeac74d8808 Mon Sep 17 00:00:00 2001 From: Samuel Lippert Date: Tue, 9 Aug 2022 14:11:25 -0500 Subject: [PATCH] Remove Deno section from main README (no module) --- README.md | 15 --------------- 1 file changed, 15 deletions(-) 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