24 lines
528 B
JavaScript
24 lines
528 B
JavaScript
// Debug
|
|
const { DebugBuilder } = require("../utilities/debugBuilder.js");
|
|
const log = new DebugBuilder("client", "clientController");
|
|
|
|
/**
|
|
* Get Status of the discord process
|
|
*/
|
|
exports.getStatus = (req, res) => {
|
|
log.INFO("Getting the status of the bot");
|
|
}
|
|
|
|
/**
|
|
* Start the bot and join the server and preset specified
|
|
*/
|
|
exports.joinServer = (req, res) => {
|
|
log.INFO("Joining the server");
|
|
}
|
|
|
|
/**
|
|
* Leaves the server if it's in one
|
|
*/
|
|
exports.leaveServer = (req, res) => {
|
|
log.INFO("Leaving the server");
|
|
} |