class BotPlatform::MessageFactory

Public Class Methods

Text(text) click to toggle source
# File lib/bot_platform/message_factory.rb, line 5
def self.Text(text)
  return Activity.new Activity::TYPES[:message], {text: text}
end