@andrejmonteiro/core-utils
Version:
✅ – Console logger. ✅ – Database connector (Sequelize) ⬜ – Seq logger (web).
18 lines • 502 B
TypeScript
/** @format */
/**
* Core module
* @module Log
* @description This module is responsible for logging the messages to the console
*/
import Log from "./logger";
/**
* Core module
* @module Database
* @description This module is responsible for connecting to the database
*/
import Database, { DatabaseDialectEnum } from "./database";
/**
* Exports all the modules from the core to be used in the application
*/
export { Log, Database, DatabaseDialectEnum };
//# sourceMappingURL=index.d.ts.map