Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
chryzcode committed Mar 19, 2024
1 parent b6f986f commit e0ea316
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

The api for penpages

- Checkout [Penpages API Documentations](https://documenter.getpostman.com/view/31014226/2sA2xnxpqp)
4 changes: 3 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ app.use(cors());
app.use(express.urlencoded({ extended: true }));

app.get("/", (req, res) => {
res.send("Penpages API");
res.send(
`Penpages API. <p>Checkout the <a href="https://documenter.getpostman.com/view/31014226/2sA2xnxpqp">PenPages API Documentation</a></p>`
);
});

app.use("/api/v1/user", authRouter);
Expand Down

0 comments on commit e0ea316

Please sign in to comment.