class Envirobly::AccessToken

def save

def save
  FileUtils.mkdir_p config_root
  File.write access_token_path, @token
  File.chmod 0600, access_token_path
  puts "Access token saved to #{access_token_path}"
end