Skip to content

Commit

Permalink
base /api/v1 endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilShahi committed Aug 6, 2022
1 parent 279f2b9 commit 155e8a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const port = process.env.PORT || 8080;

app.use(bodyParser.json());

app.get("/", (req: Request, res: Response) => {
app.get("/api/v1", (req: Request, res: Response) => {
res.send("OK");
});

Expand Down

0 comments on commit 155e8a2

Please sign in to comment.