File: an_underscore_app.rb

package info (click to toggle)
ruby-rack 2.1.4-3%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,900 kB
  • sloc: ruby: 14,828; sh: 12; makefile: 6; javascript: 1
file content (7 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AnUnderscoreApp
  def self.call(env)
    [200, { 'Content-Type' => 'text/plain' }, ['OK']]
  end
end