Skip to content

Commit 920b74e

Browse files
committed
feat: added flow_health feature
1 parent 9050a0d commit 920b74e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ doctest = true
2626
default = ["all"]
2727
flow_definition = []
2828
flow_config = []
29-
all = ["flow_definition", "flow_config"]
29+
flow_health = []
30+
all = ["flow_definition", "flow_config", "flow_health"]

src/flow_health/mod.rs

Whitespace-only changes.

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ pub mod flow_definition;
33

44
#[cfg(feature = "flow_config")]
55
pub mod flow_config;
6+
7+
#[cfg(feature = "flow_health")]
8+
pub mod flow_health;

0 commit comments

Comments
 (0)