@cocalc/database
Version:
CoCalc: code for working with our PostgreSQL database
12 lines (9 loc) • 313 B
text/typescript
/*
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
* License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
*/
import getPool, { getClient } from "./pool";
export default getPool;
export { getClient };
export type { Client } from "pg";
export { timeInSeconds } from "./util";