Skip to content

Commit b219545

Browse files
committed
removed unnecessary spaces
1 parent d6bc424 commit b219545

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
const express = require("express");
22
const routes = require("./routes");
33

4-
54
const app = express();
65
app.use(express.json());
76

87
app.use("/api", routes);
98

109
app.listen("8080", () => {
11-
console.log("Server is up and running");
10+
console.log("Server is up and running");
1211
});
1312

1413
module.exports = app;

0 commit comments

Comments
 (0)