Skip to content

Commit

Permalink
Merge pull request #25 from i10416/chore/orgamize-imports
Browse files Browse the repository at this point in the history
chore: organize imports
  • Loading branch information
i10416 authored Sep 27, 2023
2 parents f769a03 + d8a8d3b commit 57279c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
use gcloud_sdk::{GoogleAuthTokenGenerator, TokenSourceType};
pub mod topic;

use async_trait::async_trait;
use gcloud_sdk::{GoogleAuthTokenGenerator, TokenSourceType, GCP_DEFAULT_SCOPES};
use http::{
header::{ACCEPT, AUTHORIZATION, CONTENT_LENGTH, CONTENT_TYPE},
Request, Response, StatusCode,
};
use hyper::{client::HttpConnector, Body};
use hyper_tls::HttpsConnector;
use serde::Deserialize;
use topic::TopicManagementSupport;
pub mod topic;
use async_trait::async_trait;
use gcloud_sdk::GCP_DEFAULT_SCOPES;
use std::sync::Arc;
use topic::TopicManagementSupport;

/// [FCMClient] implements some wrapper functions for google FCM APIs and Instant ID APIs.
///
Expand Down

0 comments on commit 57279c2

Please sign in to comment.