lib/duse/api/health_check.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'rack/response'

module Duse
  module API
    class HealthCheck
      def call(env)
        Rack::Response.new(['OK'])
      end
    end
  end
end