sheweny
Version:
The powerful framework for create discord bots
27 lines • 850 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShewenyInformation = void 0;
const constants_js_1 = require("../constants/constants.js");
/**
* Information class for Sheweny.
*/
class ShewenyInformation {
constructor(client, message) {
Object.defineProperty(this, "client", {
enumerable: true,
configurable: true,
writable: true,
value: client
});
Object.defineProperty(this, "message", {
enumerable: true,
configurable: true,
writable: true,
value: message
});
if (client.mode === constants_js_1.CLIENT_MODE.dev)
console.log(`\x1b[34m${message}\x1b[0m`);
}
}
exports.ShewenyInformation = ShewenyInformation;
//# sourceMappingURL=ShewenyInformation.js.map