i am stupid
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 23s

This commit is contained in:
2025-08-26 18:17:13 +02:00
parent 3914b95e59
commit d163a03225
4 changed files with 22 additions and 6 deletions

8
bot/commands/est.js Normal file
View File

@ -0,0 +1,8 @@
exports.name = "est";
exports.description = ":money_with_wings: Alias for estimate.";
exports.usage = "alias";
exports.example = "alias";
exports.hidden = true;
exports.run = async (client, message, args) => {
require("./estimate").run(client, message, args);
};