stb/db/index.js
2024-11-07 14:21:20 +08:00

9 lines
161 B
JavaScript

const db = require('mysql2')
const pool = db.createPool({
host: 'localhost',
user: 'sgjq',
password: '123456',
database: 'stb2'
})
module.exports = pool