health_controller.rb 123 B

1234567
  1. # frozen_string_literal: true
  2. class HealthController < ActionController::Base
  3. def show
  4. render plain: 'OK'
  5. end
  6. end