blob: 7dd95d40a756fb28e060405a811e55abdd57c053 (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
require_relative '../lib/cli'
# Initializes and runs the CLI with the provided arguments.
#
# @param [Array<String>] ARGV the command-line arguments passed to the script
CLI.new(ARGV).run
|