activitypress/src/db.ts

6 lines
106 B
TypeScript

import knex from "knex";
import config from "./knexfile.js";
const db = knex(config);
export default db;