10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
const mysql = require('mysql2/promise');
|
||
|
const config = require('./config.js');
|
||
|
|
||
|
module.exports = {
|
||
|
init() {
|
||
|
if (!this.pool)
|
||
|
this.pool = mysql.createPool(config.mysql);
|
||
|
},
|
||
|
};
|