You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
md5file/Database/index.js

13 lines
294 B

const mysql = require('mysql2/promise');
async function initSQL() {
const connection = await mysql.createConnection({
host: 'localhost',
user: 'root',
database: 'rgvofficial',
password: 'root'
});
global.SQL = connection
}
module.exports = initSQL;