class Canteen::Application

Public Instance Methods

call(env) click to toggle source
# File lib/canteen.rb, line 5
def call(env)
  [200, {'Content-Type' => 'text/html'},
    ["Hello from Canteen!"]]
end