Skip to content

Commit

Permalink
Merge branch 'main' of github.com:denosaurs/denon into main
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Nov 3, 2020
2 parents 16594cc + 203c22d commit e823d25
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/issue_49/main.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Application } from "https://deno.land/x/oak/mod.ts";

const app = new Application();

app.use((ctx) => {
ctx.response.body = "Hello World!";
});

await app.listen({ port: 8080 });
import { Application } from "https://deno.land/x/oak/mod.ts";

const app = new Application();

app.use((ctx) => {
ctx.response.body = "Hello World!";
});

await app.listen({ port: 8080 });

0 comments on commit e823d25

Please sign in to comment.