6 lines
106 B
Ruby
6 lines
106 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HomeController < ApplicationController
|
|
# GET /
|
|
def show; end
|
|
end
|