module HttpStub::Server::Application::Routes::Status

Public Class Methods

included(application) click to toggle source
# File lib/http_stub/server/application/routes/status.rb, line 8
def self.included(application)
  application.instance_eval do

    namespace "/http_stub/status" do

      get do
        halt 200, "OK"
      end

    end

  end
end