mirror of https://github.com/kry008/Bot-2.0.git
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			573 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			573 B
		
	
	
	
		
			Plaintext
		
	
	
module.exports = {
 | 
						|
    name: '',
 | 
						|
    description: '',
 | 
						|
    help: '',
 | 
						|
    arguments: [
 | 
						|
        {
 | 
						|
            name: '',
 | 
						|
            description: '',
 | 
						|
            type: 3,
 | 
						|
            required: false,
 | 
						|
        }
 | 
						|
    ],
 | 
						|
    options: [],
 | 
						|
    slash: true,
 | 
						|
    text: true,
 | 
						|
    admin: false,
 | 
						|
    requireKick: false,
 | 
						|
    requireBan: false,
 | 
						|
    canBeUsedInDm: true,
 | 
						|
    contexts: ['GUILD_TEXT', 'GUILD_VOICE', 'DM'],
 | 
						|
    integration_types: [0,1],
 | 
						|
    execute(message, args) {
 | 
						|
        message.channel.send();
 | 
						|
    },
 | 
						|
    executeSlash(interaction) {
 | 
						|
        interaction.reply();
 | 
						|
    },
 | 
						|
};
 |