google_api_key.h 485 B

123456789101112131415161718
  1. // Copyright (c) 2014 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ATOM_COMMON_GOOGLE_API_KEY_H_
  5. #define ATOM_COMMON_GOOGLE_API_KEY_H_
  6. #ifndef GOOGLEAPIS_ENDPOINT
  7. #define GOOGLEAPIS_ENDPOINT \
  8. "https://www.googleapis.com/geolocation/v1/geolocate?key="
  9. #endif
  10. #ifndef GOOGLEAPIS_API_KEY
  11. #define GOOGLEAPIS_API_KEY "AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q"
  12. #endif
  13. #endif // ATOM_COMMON_GOOGLE_API_KEY_H_