lots of stuff

This commit is contained in:
counterweight 2025-02-05 13:21:00 +01:00
parent 6868860a85
commit 992450e9d3
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
6 changed files with 43 additions and 2 deletions

View file

@ -3,7 +3,7 @@ const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('Hello World!');
res.send("Hello World! We're live");
});
app.listen(port, () => {