Files
adamantium/lib/adamantium/middleware/process_params.rb
2023-01-27 22:55:09 +11:00

15 lines
213 B
Ruby

module Adamantium
module Middleware
class ProcessParams
def initialize(app)
@app = app
end
def call(env)
# NOOP for now.
@app.call(env)
end
end
end
end