Skip to content

Commit

Permalink
Make hono example return 200 OK on root route
Browse files Browse the repository at this point in the history
  • Loading branch information
deepjyoti30-st committed Sep 23, 2024
1 parent e97dbc1 commit 0c10c0e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,10 @@ app.get("/sessioninfo", (c) => {
});
});

app.get("/", (c) => {
return c.json({
"message": "Hello from Supertokens"
})
})

export default app;

0 comments on commit 0c10c0e

Please sign in to comment.