export const googleAdsScope = "https://www.googleapis.com/auth/adwords";
export const googleOpenIdScope = "openid";
export const googleEmailScope = "email";
export const googleProfileScope = "profile";

export const googleAdsOAuthScopes: string[] = [googleAdsScope, googleOpenIdScope, googleEmailScope, googleProfileScope];
