forresty/rdkit

View on GitHub
example/http/responder.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HTTP
  class Responder < RDKit::HTTPResponder
    get '/hello' do
      [200, {}, ['OK']]
    end
  end
end