class TelegramBot::MessageProxy

Attributes

bot[RW]
matcher[RW]
message[RW]

Public Class Methods

new(bot, message, matcher) click to toggle source
# File lib/telegram_bot/message_proxy.rb, line 10
def initialize(bot, message, matcher)
  @bot = bot
  @message = message
  @matcher = matcher
end