# frozen_string_literal: true module Articles class ShowAction < ApplicationAction expose :article def perform(id) @article = ArticleRepository.new.find_with_comments(id) end end end