Class: Discordrb::Events::SubcommandBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/discordrb/events/interactions.rb

Overview

Builder for adding subcommands to an ApplicationCommandHandler

Instance Method Summary collapse

Instance Method Details

#subcommand(name) {|| ... } ⇒ Object

Parameters:

Yield Parameters:



302
303
304
# File 'lib/discordrb/events/interactions.rb', line 302

def subcommand(name, &block)
  @subcommands[name.to_sym] = block
end