1/* 2 * This file is part of CoCalc: Copyright © 2020 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6import getPool from "./pool"; 7export default getPool; 8export * from "./pool"; 9export type { Client, PoolClient, Pool } from "pg"; 10export type { CacheTime } from "./cached"; 11 12export { timeInSeconds } from "./util"; 13 14