mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Examples and Hydrabot will soon live in a separate repo which is better suited to learning - this is so the main package isn't bloated.
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
"use strict";
|
|
|
|
var User = require("./user.js").User;
|
|
|
|
exports.PMChannel = function (user, id) {
|
|
this.user = new User(user);
|
|
this.id = id;
|
|
}; |