mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 16:02:24 +00:00
69d8d92123
Move K8s operator source code (crd, db_sync, reconciler, resolve) to windmill-ee-private and gate behind feature = "private". OSS stubs provide error messages when the feature is disabled. Add an info Alert banner in the Registries settings section when no enterprise license is active. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
235 B
Rust
12 lines
235 B
Rust
#[cfg(feature = "private")]
|
|
pub mod crd_ee;
|
|
#[cfg(feature = "private")]
|
|
pub mod db_sync_ee;
|
|
#[cfg(feature = "private")]
|
|
pub mod reconciler_ee;
|
|
#[cfg(feature = "private")]
|
|
pub mod resolve_ee;
|
|
|
|
mod operator_oss;
|
|
pub use operator_oss::*;
|