const Comment = require('./comment') const Vote = require('./vote') const User = require('./user') Vote.belongsTo(Comment) Comment.hasMany(Vote) Vote.belongsTo(User) User.hasMany(Vote) Comment.belongsTo(User) User.hasMany(Comment) module.exports = { Comment, Vote, User }