# frozen_string_literal: true

module Comments
  class DestroyAction < ApplicationAction
    def perform(id)
      CommentRepository.new.delete(id)
    end
  end
end