subiendo cambio
All checks were successful
build-and-push / build (push) Successful in 6s

This commit is contained in:
2025-05-02 16:06:21 -06:00
parent 2a00114841
commit 86c913f197

View File

@@ -2,7 +2,7 @@ const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
res.end('Hello World mega cracks\n');
});
const PORT = 3000;