class Envirobly::AccessToken

def initialize(token = ENV["ENVIROBLY_ACCESS_TOKEN"].presence, shell: nil)

def initialize(token = ENV["ENVIROBLY_ACCESS_TOKEN"].presence, shell: nil)
  @shell = shell
  if token.blank? && File.exist?(self.class.path)
    @token = File.read(self.class.path)
  else
    @token = token
  end
end