mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 10:07:35 +00:00
4 lines
147 B
TypeScript
4 lines
147 B
TypeScript
import Knex from "knex";
|
|
import * as knexConfigs from "./knexfile";
|
|
|
|
export const knex = Knex(knexConfigs[process.env.NODE_ENV || "development"]);
|