Skip to content

Commit

Permalink
chore: format code with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 20, 2024
1 parent 1521c35 commit 95f5116
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/api/app/api/[[...route]]/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ app.get("/", async (c) => {
});
});

export default app
export default app;
13 changes: 6 additions & 7 deletions apps/api/app/api/[[...route]]/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ import { prisma } from "@repo/db";

const app = new Hono();

app
.get("/", async (c) => {
const user = await prisma.user.findMany();
return c.json({
user,
});
})
app.get("/", async (c) => {
const user = await prisma.user.findMany();
return c.json({
user,
});
});

export default app;

0 comments on commit 95f5116

Please sign in to comment.