# frozen_string_literal: true require "thor" require_relative "perform" module Neetob class CLI module MonthlyAudit class Commands < Thor desc "perform", "Perform the audit" option :month, type: :string, aliases: "-m", required: true, desc: "Month. Example: June-2024" def perform Perform.new(options[:month], options[:sandbox]).run end end end end end