# frozen_string_literal: true require "thor" require_relative "ls" module Neetob class CLI module Local class Commands < Thor desc "ls", "List the files in local neeto repos" option :apps, type: :array, aliases: "-a", required: true, desc: "Neeto app names. Can be matched using the '*' wildcard. Example: \"neeto*\" \"neeto-cal-web\"" option :dir, type: :string, aliases: "-d", desc: "Mention the directory you want to list" def ls Ls.new(options[:apps], options[:dir], options[:sandbox]).run end end end end end