import * as connection from './connection'; import * as tables from './tables'; export * from './connection'; export { paginate } from './paginate'; export { parseGRPCQuery } from './parseGRPCQuery'; export { parseGRPCPagination } from './parseGRPCPagination'; export const DB = { client: connection.client, ...tables, }; export const getInstance = () => DB;