Files
standardnotes-app-web/app/controllers/health_check_controller.rb
2020-06-17 06:59:27 +02:00

6 lines
100 B
Ruby

class HealthCheckController < ApplicationController
def index
render :plain => "OK"
end
end