carthage
Version:
An API Server and Framework with scaffold functions for node.js
17 lines (9 loc) • 347 B
JavaScript
;
const Carthage = require('carthage');
/* Include this file to enable Model relationships */
/* For example...
const Post = Carthage.require('app/models/post.js');
const Comment = Carthage.require('app/models/comment.js');
Comment.joinsTo(Post, {multiple: true});
*/
module.exports = {}; // Don't need to export anything