health_controller.rb 169 B

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