Skip to content

Commit d2b3290

Browse files
sort import properly in lib
1 parent 8ee134d commit d2b3290

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/lib.rs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@
1717
use std::sync::Arc;
1818
use std::time::Duration;
1919

20-
pub use self::config::Config;
21-
pub use self::error::ApplicationError;
22-
pub use self::fifo_cache::FifoCache;
23-
pub use self::proxy::{S3CachingProxy, range_to_string};
24-
pub use self::s3_cache::{CacheKey, CachedObject, S3Cache};
25-
pub use self::statistics::UniqueRequestedObjectsStatisticsTracker;
26-
use crate::service::S3CachingServiceProxy;
2720
use aws_credential_types::Credentials;
2821
use hyper_util::{
2922
rt::{TokioExecutor, TokioIo},
@@ -34,6 +27,15 @@ use s3s::service::S3ServiceBuilder;
3427
use tokio::net::TcpListener;
3528
use tracing::{debug, error, info};
3629

30+
use crate::service::S3CachingServiceProxy;
31+
32+
pub use self::config::Config;
33+
pub use self::error::ApplicationError;
34+
pub use self::fifo_cache::FifoCache;
35+
pub use self::proxy::{S3CachingProxy, range_to_string};
36+
pub use self::s3_cache::{CacheKey, CachedObject, S3Cache};
37+
pub use self::statistics::UniqueRequestedObjectsStatisticsTracker;
38+
3739
mod auth;
3840
mod config;
3941
mod error;

0 commit comments

Comments
 (0)