about summary refs log tree commit diff
path: root/app/controllers/health_controller.rb
blob: 2a22a05570d9f0dd9545febf5a3c2095e2c580a4 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class HealthController < ActionController::Base
  def show
    render plain: 'OK'
  end
end