mkt-google 0.2.0

Google Ads provider for the mkt marketing CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Google Ads provider for the `mkt` marketing CLI.
//!
//! Talks to the Google Ads API REST interface (v24): GAQL searches via
//! `googleAds:search` and writes via the per-resource `:mutate` endpoints.

#![warn(missing_docs)]

mod auth;
mod client;
mod error;
pub mod mapping;
mod provider;

pub use auth::{GOOGLE_TOKEN_URL, fetch_access_token};
pub use client::GoogleClient;
pub use provider::GoogleProvider;