UNPKG

kontainer-di

Version:

A simple lightweight Dependency Injection container

7 lines (6 loc) 145 B
'use strict'; var knex = require('knex'); var DatabaseFactory = function(dbConfig){ return knex(dbConfig); } module.exports = DatabaseFactory;