Method: Fluent::GoogleChatClient::Base#initialize
- Defined in:
- lib/fluent/plugin/google_chat_client.rb
#initialize(keyfile = nil, https_proxy = nil) ⇒ Base
Returns a new instance of Base.
35 36 37 38 39 |
# File 'lib/fluent/plugin/google_chat_client.rb', line 35 def initialize(keyfile = nil, https_proxy = nil) self.keyfile = keyfile if keyfile self.https_proxy = https_proxy if https_proxy @log = Logger.new('/dev/null') end |