blob: 0cb43e0f31bc936670ab21be0375cd649c76d174 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
 | # frozen_string_literal: true
require_relative "application_controller"
class Rails::WelcomeController < Rails::ApplicationController # :nodoc:
  layout false
  def index
  end
end
 |