Class: Cosmos::PingModel

Inherits:
Object show all
Defined in:
lib/cosmos/models/ping_model.rb

Class Method Summary collapse

Class Method Details

.getObject



25
26
27
28
29
30
31
32
# File 'lib/cosmos/models/ping_model.rb', line 25

def self.get()
  response = Store.ping()
  if response
    return 'UP'
  else
    return 'DOWN'
  end
end