despues de
All checks were successful
build-and-push / build (push) Successful in 6s
build-and-push / deploy (push) Successful in 2s

This commit is contained in:
2025-05-02 16:46:54 -06:00
parent 4bd89e3e09
commit c6553be387

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('cambio malo\n');
res.end('cambio bueno\n');
});
const PORT = 3000;