apple_search_ads_access_token/
lib.rs

1pub use apple_search_ads_client_secret;
2pub use oauth2_apple;
3pub use oauth2_client;
4
5//
6pub mod single;
7
8pub type ResponseSuccessfulBody =
9    oauth2_client::oauth2_core::client_credentials_grant::access_token_response::SuccessfulBody<
10        oauth2_apple::AppleScope,
11    >;
12pub type IssuedAt = std::time::SystemTime;