Skip to content

Commit

Permalink
added new route 8
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishektiwari47 committed Nov 30, 2023
1 parent 458797e commit 11cc7e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/server/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ app.use("/pay", express_1.default.json(), createCheckoutSession_1.default);
app.use("/event", webhook_1.default);
app.use("/bid", express_1.default.json(), bid_1.default);
app.get("/done", (req, res) => {
res.json({ "message": "this is done now 8" });
res.json({ "message": "this is done now 9" });
});
app.listen(3000, "0.0.0.0", () => {
console.log(`Example app listening at http://localhost:${constants_1.port}`);
Expand Down
2 changes: 1 addition & 1 deletion apps/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ app.use("/pay", express.json(), paymentRoutes);
app.use("/event",eventRoutes)
app.use("/bid",express.json(),bidRoutes);
app.get("/done",(req,res)=>{
res.json({"message":"this is done now 8"})
res.json({"message":"this is done now 9"})
});

app.listen(3000,"0.0.0.0", () => {
Expand Down

0 comments on commit 11cc7e8

Please sign in to comment.