threatflux_google_sdk/
lib.rs

1//! `ThreatFlux` Google SDK.
2//!
3//! Provides OAuth helpers, token management, and Google API clients for Gmail and Calendar.
4
5pub mod oauth;
6pub mod tokens;
7
8#[cfg(feature = "gmail")]
9pub mod gmail;
10
11#[cfg(feature = "calendar")]
12pub mod calendar;