r7kamura/ellen

View on GitHub
lib/ruboty/actions/whoami.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ruboty
  module Actions
    class Whoami < Base
      def call
        message.reply(message.from_name)
      end
    end
  end
end