chinwagsocial/app/controllers/health_controller.rb

8 lines
123 B
Ruby
Raw Normal View History

2021-04-03 11:39:04 +11:00
# frozen_string_literal: true
class HealthController < ActionController::Base
def show
render plain: 'OK'
end
end