6
0
Ответвление 0
bastodon/app/controllers/health_controller.rb
2021-04-03 02:39:04 +02:00

7 строки
123 Б
Ruby

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