bass-migrations
Version:
Migration library for BASS
20 lines (19 loc) • 549 B
JavaScript
/*
* This file is part of the bass-migrations module.
*
* (c) Anthony Matarazzo <email@anthonymatarazzo.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Export the public constructors
*
* @author Anthony Matarazzo <email@anthonymatarazzo.com>
*/
module.exports = {
BaseCommand: require('./lib/BaseCommand') ,
Migration: require('./lib/Migration') ,
ContainerMigration: require('./lib/ContainerMigration') ,
Helper: require('./lib/Helper')
};