1#![ 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#[ cfg( feature = "enabled" ) ]
10pub( crate ) mod private
11{
12 pub fn example()
14 {
15 println!( "Hello from claude_runner!" );
16 }
17}
18
19#[ 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::*;