mkt_google/lib.rs
1//! Google Ads provider for the `mkt` marketing CLI.
2//!
3//! Talks to the Google Ads API REST interface (v24): GAQL searches via
4//! `googleAds:search` and writes via the per-resource `:mutate` endpoints.
5
6#![warn(missing_docs)]
7
8mod auth;
9mod client;
10mod error;
11pub mod mapping;
12mod provider;
13
14pub use auth::{GOOGLE_TOKEN_URL, fetch_access_token};
15pub use client::GoogleClient;
16pub use provider::GoogleProvider;