refactor(bootstrap): remove unused warn import from log module
Removed the unused `warn` import from the `log` module in `mod.rs` to clean up unused dependencies and improve code clarity.
This commit is contained in:
parent
8581927d97
commit
ab7abacbe3
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ use crate::shared::utils::establish_pg_connection;
|
|||
use anyhow::Result;
|
||||
use diesel::{connection::SimpleConnection};
|
||||
use dotenvy::dotenv;
|
||||
use log::{debug, error, info, trace, warn};
|
||||
use log::{debug, error, info, trace};
|
||||
use aws_sdk_s3::Client;
|
||||
use aws_config::BehaviorVersion;
|
||||
use rand::distr::Alphanumeric;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue