# frozen_string_literal: true require 'table_print' module AwsCftTools class Runbook ## # A subclass of the Runbook designed for reporting out status or other information about resources. # class Report < Runbook def run tp(items, columns) end ### # @return [Array] # def items [] end ### # @return [Array] # def columns [] end end end end