Add move command

This commit is contained in:
Isaac
2022-08-02 21:29:44 +01:00
parent b4618aac1b
commit 954681685a
4 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
const { Autocompleter } = require('@eartharoid/dbf');
module.exports = class CategoryCompleter extends Autocompleter {
constructor(client, options) {
super(client, {
...options,
id: 'category',
});
}
async run(value, comamnd, interaction) { }
};