File size: 239 Bytes
89e7da5
 
1f6a8f9
89e7da5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Options, Sequelize } from "sequelize";

import { config } from "../db/config/db.config";

export const sequelize = new Sequelize(
  config.database as string,
  config.username as string,
  config.password,
  config as Options
);