class Message { constructor(channel, author, content, time) { this.channel = channel; this.author = author; this.content = content; this.time = time; } } export {Message};