apps/web/controllers/books/index.rb (
13
lines of code) (
raw
):
module Web module Controllers module Books class Index include Web::Action expose :books def call(params) @books = BookRepository.new.all end end end end end