Skip to content

Commit

Permalink
Avoid wildcard imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pawurb committed Jan 19, 2024
1 parent 44549c5 commit 8922b70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/structs/bloat.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::structs::shared::Tabular;
use postgres::Row;
use rust_decimal::prelude::*;
use rust_decimal::prelude::Decimal;
use rust_decimal_macros::dec;

#[derive(Debug, Clone)]
Expand Down
2 changes: 1 addition & 1 deletion src/structs/buffercache_stats.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::structs::shared::Tabular;
use postgres::Row;
use rust_decimal::prelude::*;
use rust_decimal::prelude::Decimal;
use rust_decimal_macros::dec;

#[derive(Debug, Clone)]
Expand Down
2 changes: 1 addition & 1 deletion src/structs/cache_hit.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::structs::shared::Tabular;
use postgres::Row;
use rust_decimal::prelude::*;
use rust_decimal::prelude::Decimal;
use rust_decimal_macros::dec;

#[derive(Debug, Clone)]
Expand Down

0 comments on commit 8922b70

Please sign in to comment.