Initial commit in new repository

This commit is contained in:
Dragory 2018-07-01 03:35:51 +03:00
commit 23c78f2c9c
15 changed files with 4048 additions and 0 deletions

6
src/knex.ts Normal file
View file

@ -0,0 +1,6 @@
const knexfile = require("../knexfile");
import * as knex from "knex";
const db = knex(knexfile);
export default db;