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