docs(sdk): fix typo PORT

This commit is contained in:
Salman K.A.A
2024-02-22 12:27:04 +05:30
committed by GitHub
parent 2eb9592b1a
commit 64fbe4161c
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ app.get("/", async (req, res) => {
app.listen(PORT, async () => {
// initialize client
console.log(`App listening on port ${port}`);
console.log(`App listening on port ${PORT}`);
});
```

View File

@@ -42,7 +42,7 @@ app.get("/", async (req, res) => {
app.listen(PORT, async () => {
// initialize client
console.log(`App listening on port ${port}`);
console.log(`App listening on port ${PORT}`);
});
```