6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import postgres from "postgres";
|
|
import { postgresConfigNpm, postgresCredConfigNpm } from "./config";
|
|
|
|
export const sql = postgres(postgresConfigNpm);
|
|
export const sqlCred = postgres(postgresCredConfigNpm);
|