style: add prettier
Summary: Test Plan:
This commit is contained in:
12
src/index.ts
12
src/index.ts
@@ -1,9 +1,9 @@
|
||||
import { Hono } from 'hono'
|
||||
import { Hono } from "hono";
|
||||
|
||||
const app = new Hono()
|
||||
const app = new Hono();
|
||||
|
||||
app.get('/', (c) => {
|
||||
return c.text('Hello Hono!')
|
||||
})
|
||||
app.get("/", (c) => {
|
||||
return c.text("Hello Hono!");
|
||||
});
|
||||
|
||||
export default app
|
||||
export default app;
|
||||
|
||||
Reference in New Issue
Block a user