google_auth_helpers/
lib.rs

1
2
3
4
#[async_trait::async_trait]
pub trait GoogleWorkspaceCredentials {
    async fn get_access_token(&self) -> anyhow::Result<String>;
}