basic shape
This commit is contained in:
10
packages/server/src/index.ts
Normal file
10
packages/server/src/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Hono } from "hono";
|
||||
|
||||
const app = new Hono();
|
||||
|
||||
app.get("/", (c) => {
|
||||
return c.text("Hello Hono!");
|
||||
});
|
||||
|
||||
console.log("server running");
|
||||
export default app;
|
||||
Reference in New Issue
Block a user