Skip to content

Commit

Permalink
test update
Browse files Browse the repository at this point in the history
  • Loading branch information
megasanjay committed Nov 12, 2024
1 parent d5e62f0 commit 89cfa4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Hono } from "hono";
const app = new Hono();

app.get("/", (c) => {
return c.text("Hello Hono v2!");
return c.text("Hello Hono!");
});

app.get("/api/v1/users", (c) => {
Expand All @@ -14,7 +14,7 @@ app.get("/api/v1/users", (c) => {
app.get("/secret", (c) => {
const secretValue = process.env.SV || "no secret";

return c.text(`Hello v2 ${secretValue}!`);
return c.text(`Hello ${secretValue}!`);
});

app.get("/:name", (c) => {
Expand Down

0 comments on commit 89cfa4c

Please sign in to comment.