Browse Source

Update src/index.ts

Co-authored-by: Lipis <lipiridis@gmail.com>
master
David Luzar 4 years ago
parent
commit
480c9ff00a
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/index.ts

+ 1
- 1
src/index.ts View File

11
 const port = process.env.PORT || 80; // default port to listen
11
 const port = process.env.PORT || 80; // default port to listen
12
 
12
 
13
 app.get("/", (req, res) => {
13
 app.get("/", (req, res) => {
14
-  res.send("Excalidraw collab server is up :)");
14
+  res.send("Excalidraw collaboration server is up :)");
15
 });
15
 });
16
 
16
 
17
 const server = http.createServer(app);
17
 const server = http.createServer(app);

Loading…
Cancel
Save