module Meroku module CLI # Logic related to apiusername, apipassword and the env file module Secrets def self.load(admin: false) return unless admin env_file = Dir.home + '/.meroku/meroku.env' abort "error: File not found (#{env_file})" unless File.exist?(env_file) Dotenv.load(env_file) end end end end