Skip to content

Commit 75d7cea

Browse files
committed
re-order imports
1 parent 6dd55f1 commit 75d7cea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/commons/s3.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
//! Operator CRDs are expected to use the [S3BucketDef] as an entry point to this module
55
//! and obtain an [InlinedS3BucketSpec] by calling [`S3BucketDef::resolve`].
66
//!
7+
use kube::CustomResource;
8+
use schemars::JsonSchema;
9+
use serde::{Deserialize, Serialize};
10+
711
use crate::{
812
client::Client,
913
commons::{authentication::tls::Tls, secret_class::SecretClassVolume},
1014
error::{self, OperatorResult},
1115
};
1216

13-
use kube::CustomResource;
14-
use schemars::JsonSchema;
15-
use serde::{Deserialize, Serialize};
16-
1717
/// S3 bucket specification containing only the bucket name and an inlined or
1818
/// referenced connection specification.
1919
#[derive(

0 commit comments

Comments
 (0)