anything.rb 98 B

12345
  1. class Anything
  2. def self.call(env)
  3. [200, {'Content-Type' => 'text/plain'}, ['OK']]
  4. end
  5. end