| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package WWW::Foursquare::Config; | 
| 2 |  |  |  |  |  |  |  | 
| 3 | 3 |  |  | 3 |  | 18 | use strict; | 
|  | 3 |  |  |  |  | 5 |  | 
|  | 3 |  |  |  |  | 111 |  | 
| 4 | 3 |  |  | 3 |  | 17 | use warnings; | 
|  | 3 |  |  |  |  | 6 |  | 
|  | 3 |  |  |  |  | 74 |  | 
| 5 |  |  |  |  |  |  |  | 
| 6 | 3 |  |  | 3 |  | 16 | use Exporter; | 
|  | 3 |  |  |  |  | 5 |  | 
|  | 3 |  |  |  |  | 437 |  | 
| 7 |  |  |  |  |  |  | our @ISA    = 'Exporter'; | 
| 8 |  |  |  |  |  |  | our @EXPORT = qw($AUTH_CODE_ENDPOINT $ACCESS_TOKEN_ENDPOINT $API_ENDPOINT $API_VERSION); | 
| 9 |  |  |  |  |  |  |  | 
| 10 |  |  |  |  |  |  | our $AUTH_CODE_ENDPOINT    = "https://foursquare.com/oauth2/authenticate"; | 
| 11 |  |  |  |  |  |  | our $ACCESS_TOKEN_ENDPOINT = "https://foursquare.com/oauth2/access_token"; | 
| 12 |  |  |  |  |  |  | our $API_ENDPOINT          = "https://api.foursquare.com/v2/"; | 
| 13 |  |  |  |  |  |  | our $API_VERSION           = "20120915"; | 
| 14 |  |  |  |  |  |  |  | 
| 15 |  |  |  |  |  |  |  | 
| 16 |  |  |  |  |  |  | 1; |