/** * Register the models used by our application. * @module app/db/models/index */ import registerShoe from "./Shoe"; /** * Register our models with a Bookshelf instance. * * Some modules define multiple models for pivot tables. In these cases, * the models should be stored in the file for the closest related concept. * * @param {Object} bookshelf The bookshelf instance to bind to */ export function registerModels(bookshelf) { registerShoe(bookshelf); }