Method: Fluent::PluginHelper::HttpServer::Router#route!

Defined in:
lib/fluent/plugin_helper/http_server/router.rb

#route!(method, path, request) ⇒ Object

Parameters:



48
49
50
# File 'lib/fluent/plugin_helper/http_server/router.rb', line 48

def route!(method, path, request)
  @router.fetch(method).fetch(path, @default_app).call(request)
end