ecl_steps/lib.rs
1#![doc = include_str!("../README.md")]
2#![forbid(unsafe_code)]
3#![warn(missing_docs)]
4
5//! ECL Steps Library
6//!
7//! Step implementations for ECL workflows.
8
9// Re-export core types
10pub use ecl_core::{Error, Result};
11
12#[cfg(test)]
13mod tests {
14 #[test]
15 fn test_crate_compiles() {
16 // This test ensures the crate compiles
17 // More substantive tests come in later stages
18 }
19}