10 lines
136 B
TypeScript
10 lines
136 B
TypeScript
import { Hono } from "hono";
|
|
|
|
const app = new Hono();
|
|
|
|
app.get("/", (c) => {
|
|
return c.text("Hello Hono!");
|
|
});
|
|
|
|
Deno.serve(app.fetch);
|