Files
DRB-CnC/Client/controllers/botController.js
2023-05-18 22:53:25 -04:00

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");
}