claude_runner/
lib.rs

1//! Task and workflow orchestration runtime with Claude AI-driven automation and intelligent execution
2
3#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
4#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
5#![ doc( html_root_url = "https://docs.rs/claude_runner/latest/claude_runner/" ) ]
6#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
7
8/// Internal namespace with protected interface.
9#[ cfg( feature = "enabled" ) ]
10pub( crate ) mod private
11{
12  /// Example function demonstrating module structure.
13  pub fn example()
14  {
15    println!( "Hello from claude_runner!" );
16  }
17}
18
19/// Prelude - convenient re-exports for common use.
20#[ cfg( feature = "enabled" ) ]
21pub mod prelude
22{
23  #[ doc( inline ) ]
24  pub use super::private::*;
25}
26
27#[ cfg( feature = "enabled" ) ]
28#[ doc( inline ) ]
29pub use prelude::*;