Update src/index.ts

Co-authored-by: Lipis <lipiridis@gmail.com>
This commit is contained in:
David Luzar 2020-12-28 12:37:47 +01:00 committed by GitHub
parent dba4e6e137
commit 480c9ff00a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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