3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 22:01:50 +00:00
zeppelin/src/knex.ts

7 lines
119 B
TypeScript
Raw Normal View History

2018-07-01 03:35:51 +03:00
const knexfile = require("../knexfile");
import * as knex from "knex";
const db = knex(knexfile);
export default db;