comentario en ingles

This commit is contained in:
Jaume Solís 2024-01-17 18:37:35 +01:00
parent 1e28f94293
commit 160f7d2a5c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ async function connect() {
const mysql = require("mysql2/promise");
const connection = await mysql.createConnection("mysql://" + user + ":" + password + "@" + host + ":" + port + "/" + database + "");
console.log("Conectou no MySQL!");
console.log("Connected to MySQL!");
global.connection = connection;
return connection;
}