Skip to content

Commit 8e5ac6b

Browse files
committed
chore(stackable-operator): Add pub keyword
1 parent fb23f1c commit 8e5ac6b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/stackable-operator/src/crd/authentication/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod v1alpha1_impl;
88

99
#[versioned(version(name = "v1alpha1"))]
1010
pub mod versioned {
11-
mod v1alpha1 {
11+
pub mod v1alpha1 {
1212
// Re-export the v1alpha1-specific error type from the private impl module.
1313
pub use v1alpha1_impl::Error;
1414

crates/stackable-operator/src/crd/authentication/ldap/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mod v1alpha1_impl;
1212

1313
#[versioned(version(name = "v1alpha1"))]
1414
pub mod versioned {
15-
mod v1alpha1 {
15+
pub mod v1alpha1 {
1616
// Re-export the v1alpha1-specific error type from the private impl module.
1717
pub use v1alpha1_impl::Error;
1818
}

crates/stackable-operator/src/crd/authentication/oidc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const DEFAULT_WELLKNOWN_OIDC_CONFIG_PATH: &str = "/.well-known/openid-configurat
1919

2020
#[versioned(version(name = "v1alpha1"))]
2121
pub mod versioned {
22-
mod v1alpha1 {
22+
pub mod v1alpha1 {
2323
// Re-export the v1alpha1-specific error type from the private impl module.
2424
pub use v1alpha1_impl::Error;
2525
}

0 commit comments

Comments
 (0)