Skip to content

Commit

Permalink
Fixed clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
abdolence committed Jan 1, 2024
1 parent 5a3f966 commit 618f8ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,14 @@ mod firestore_serde;
pub use firestore_serde::*;

mod struct_path_macro;
use crate::errors::FirestoreError;

#[allow(unused_imports)]
pub use struct_path_macro::*;

pub mod timestamp_utils;

use crate::errors::FirestoreError;

pub type FirestoreResult<T> = std::result::Result<T, FirestoreError>;

pub type FirestoreDocument = gcloud_sdk::google::firestore::v1::Document;
Expand Down

0 comments on commit 618f8ae

Please sign in to comment.