module SlackMathbot
|
|
module Commands
|
|
class Default < SlackRubyBot::Commands::Base
|
|
match(/^(?<bot>\w*)$/)
|
|
|
|
def self.call(data, _match)
|
|
send_message_with_gif data.channel, SlackMathbot::ABOUT, 'math'
|
|
end
|
|
end
|
|
end
|
|
end
|