1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 07:18:48 +09:00
whippy-edition/app/controllers/health_controller.rb

8 lines
123 B
Ruby
Raw Normal View History

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