class AppStatus::App

Public Instance Methods

call(env) click to toggle source
# File lib/app_status/app.rb, line 5
def call(env)
  require 'json'

  [200, {'Content-Type' => 'application/json'}, [AppStatus.status.to_json]]
end