end about res.

This commit is contained in:
sweatshirt0 2023-02-20 16:31:55 -05:00
parent 232bd39871
commit c7f6f59923

View File

@ -44,6 +44,8 @@ const server = http.createServer((req, res) => {
} else { } else {
res.write(data); res.write(data);
} }
res.end();
}); });
} }