This commit is contained in:
Lukian 2023-06-06 18:19:37 +02:00
parent eec0a6c767
commit 5c93e9d8f7
11 changed files with 478 additions and 388 deletions

View file

@ -102,6 +102,19 @@ const commands = [
name : 'github',
description : 'Get the github link of the bot',
},
{
name : 'dalle',
description : 'Make a request to the DALL-E API',
options : [
{
name : 'query',
description : 'The query you want to ask to the API',
type : ApplicationCommandOptionType.String,
required : true,
},
],
},
];
module.exports = { commands };