File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ async fn main() -> Result<()> {
7070 tracing:: info!( "Elizacp starting" ) ;
7171
7272 // Run the Eliza agent
73- run_elizacp ( sacp_tokio:: Stdio :: default ( ) ) . await ?;
73+ run_elizacp ( sacp_tokio:: Stdio ) . await ?;
7474
7575 Ok ( ( ) )
7676}
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ impl ConductorArgs {
122122
123123 Conductor :: new ( name, providers, None )
124124 . into_handler_chain ( )
125- . connect_to ( Stdio :: default ( ) ) ?
125+ . connect_to ( Stdio ) ?
126126 . serve ( )
127127 . await
128128 }
Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ pub use acp_agent::AcpAgent;
1010use sacp:: { ByteStreams , Transport } ;
1111use tokio_util:: compat:: { TokioAsyncReadCompatExt , TokioAsyncWriteCompatExt } ;
1212
13- #[ derive( Default ) ]
14- pub struct Stdio {
15- _private : ( ) ,
16- }
13+ pub struct Stdio ;
1714
1815impl Transport for Stdio {
1916 fn transport (
You can’t perform that action at this time.
0 commit comments