mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-26 22:04:23 +00:00
15 lines
378 B
JavaScript
15 lines
378 B
JavaScript
const mysql = require( 'promise-mysql' );
|
|
|
|
class SQLDB {
|
|
constructor () {
|
|
this.sqlconnection = mysql.createConnection( {
|
|
host: 'janishutz.com',
|
|
port: '3306',
|
|
user: 'janishut_libreeventTest',
|
|
password: '^PVgj&xkaQKmMDCgz&2^aCaYxc7nCS#*%7%',
|
|
connectionLimit: 200
|
|
} );
|
|
}
|
|
}
|
|
|
|
module.exports = SQLDB; |