Files
discord.js/lib/index.js
hydrabolt 1c8c9d2da3 Join Server returns server properly
Previously if the client was already part of a server and attempted to
accept an invite to it again, it would stall and not work correctly.
2015-08-28 17:49:47 +01:00

12 lines
217 B
JavaScript

"use strict";
var request = require("superagent");
var Endpoints = require("./Endpoints.js");
var Client = require("./Client.js");
var Discord = {
Endpoints: Endpoints,
Client: Client
};
module.exports = Discord;