Skip to content

Commit e21a8f5

Browse files
committed
Separate public modules
1 parent a6101a4 commit e21a8f5

File tree

1 file changed

+4
-3
lines changed
  • crates/stackable-operator/src/kvp

1 file changed

+4
-3
lines changed

crates/stackable-operator/src/kvp/mod.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ use std::{
88

99
use snafu::{ResultExt, Snafu};
1010

11+
use crate::iter::TryFromIterator;
12+
1113
pub mod annotation;
1214
pub mod consts;
13-
mod key;
1415
pub mod label;
16+
17+
mod key;
1518
mod value;
1619

1720
pub use annotation::{Annotation, AnnotationError, AnnotationValue, Annotations};
1821
pub use key::*;
1922
pub use label::{Label, LabelError, LabelSelectorExt, LabelValue, Labels, SelectorError};
2023
pub use value::*;
2124

22-
use crate::iter::TryFromIterator;
23-
2425
#[cfg(doc)]
2526
use k8s_openapi::apimachinery::pkg::apis::meta::v1::ObjectMeta;
2627
#[cfg(doc)]

0 commit comments

Comments
 (0)