diff --git a/slack-mathbot/commands/echo.rb b/slack-mathbot/commands/echo.rb deleted file mode 100644 index acb4f77..0000000 --- a/slack-mathbot/commands/echo.rb +++ /dev/null @@ -1,13 +0,0 @@ -module SlackMathbot - module Commands - class Echo < SlackRubyBot::Commands::Base - command 'echo' - - def self.call(client, data, match) - send_message client, data.channel, match[:expression] - rescue StandardError => e - send_message client, data.channel, "Sorry, #{e.message}." - end - end - end -end