UNPKG

multibridge

Version:

A multi-database connection framework with centralized configuration

10 lines (9 loc) 700 B
/** * ORM adapters for MultiBridge * Provides integration with popular ORMs while maintaining MultiBridge's connection management */ export { getSequelizeInstance, closeSequelizeInstance, closeAllSequelizeInstances, } from "./sequelize"; export { getTypeORMDataSource, closeTypeORMDataSource, closeAllTypeORMDataSources, } from "./typeorm"; export { getMongooseConnection, closeMongooseConnection, closeAllMongooseConnections, } from "./mongoose"; export { getCassandraClient, executeCQL, createTable, insert, select, update, remove, closeCassandraClient, closeAllCassandraClients, type CassandraModelDefinition, } from "./cassandra"; export type { ORMInstance, ORMAdapterConfig } from "./types";