# frozen_string_literal: true require "thor" require_relative "check_essential_env" module Neetob class CLI module Sre class Commands < Thor desc "check_essential_env", "Confirm whether essential environment variables are set for all Neeto apps" def check_essential_env CheckEssentialEnv.new.run end end end end end