push files again

This commit is contained in:
hydrabolt
2015-08-26 10:43:23 +01:00
parent d3089c11ab
commit 68b1df1b35
10 changed files with 2055 additions and 0 deletions

13
lib/Endpoints.js Normal file
View File

@@ -0,0 +1,13 @@
"use strict";
exports.BASE_DOMAIN = "discordapp.com";
exports.BASE = "https://" + exports.BASE_DOMAIN;
exports.WEBSOCKET_HUB = "wss://" + exports.BASE_DOMAIN + "/hub";
exports.API = exports.BASE + "/api";
exports.AUTH = exports.API + "/auth";
exports.LOGIN = exports.AUTH + "/login";
exports.LOGOUT = exports.AUTH + "/logout";
exports.USERS = exports.API + "/users";
exports.SERVERS = exports.API + "/guilds";
exports.CHANNELS = exports.API + "/channels";