class SlackRespondent::Commands::Hi

Public Class Methods

call(client, data, _match) click to toggle source
# File lib/slack_respondent/commands/hi.rb, line 9
def self.call(client, data, _match)
  client.say(channel: data.channel, text: "Hi <@#{data.user}>!")
end