This commit is contained in:
0x8664b2
2022-08-23 13:00:54 -07:00
commit 808ff56abc
85 changed files with 1436 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
class ApplicationController < ActionController::Base
end

View File

View File

@@ -0,0 +1,6 @@
class HomeController < ApplicationController
def index
@year = 2022
end
end