mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 16:03:27 +00:00
Join barrier, debounce, and retry become the private windmill_queue::cascade module (cascade_ee in windmill-ee-private); OSS gets cascade_oss no-op fallbacks (plain OR fan-out). Core cascade stays public. Bumps ee-repo-ref. Verified default/private/private,enterprise. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
33 lines
811 B
Rust
33 lines
811 B
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
pub mod asset_dispatch;
|
|
#[cfg(feature = "private")]
|
|
pub mod cascade_ee;
|
|
pub mod cascade_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use cascade_ee as cascade;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use cascade_oss as cascade;
|
|
pub mod jobs;
|
|
#[cfg(feature = "private")]
|
|
pub mod jobs_ee;
|
|
pub mod jobs_oss;
|
|
pub mod schedule;
|
|
pub use jobs::*;
|
|
pub mod flow_status;
|
|
pub mod tags;
|
|
pub mod workspace_fairness;
|
|
#[cfg(feature = "private")]
|
|
pub mod workspace_fairness_ee;
|
|
|
|
#[cfg(feature = "cloud")]
|
|
pub mod cloud_usage;
|
|
#[cfg(feature = "cloud")]
|
|
pub use cloud_usage::init_usage_buffer;
|