mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
const Sequelize = require("sequelize");
|
|
|
|
const sequelize = new Sequelize("econo_whatsbot", "root", "nodecomplete", {
|
|
dialect: "mysql",
|
|
host: "localhost",
|
|
logging: false,
|
|
});
|
|
|
|
module.exports = sequelize;
|