# frozen_string_literal: true require "thor" require_relative "config_vars/commands" module Neetob class CLI module NeetoDeploy class Commands < Thor desc "config_vars", "Interact with the config(env) variables on neetoDeploy apps" subcommand "config_vars", ConfigVars::Commands end end end end