Skip to content

Commit

Permalink
chore: update fastro (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ynwd authored Nov 20, 2023
1 parent bafa76f commit f39fbef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frameworks/fastro/hello_bench.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import application from "https://deno.land/x/fastro/server/mod.ts";
import fastro from "https://deno.land/x/fastro/mod.ts";

const app = application();
const f = new fastro();

app.get("/", () => "Hello, Bench!");
f.get("/", () => "Hello, Bench!");

await app.serve({ port: 8000 });
await f.serve({ port: 8000 });

0 comments on commit f39fbef

Please sign in to comment.