mashirozx/mastodon

View on GitHub
app/controllers/health_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

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