Skip to content

Commit

Permalink
refactor: rename commands::repl to commands::console
Browse files Browse the repository at this point in the history
  • Loading branch information
Frando committed Nov 15, 2023
1 parent 94be4f4 commit 7d724d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iroh/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub mod blob;
pub mod doc;
pub mod doctor;
pub mod node;
pub mod repl;
pub mod console;
pub mod start;
pub mod tag;

Expand Down Expand Up @@ -70,13 +70,13 @@ impl Cli {
self.start_args
.run_with_command(&rt, &config, |iroh| async move {
let env = ConsoleEnv::for_console()?;
repl::run(&iroh, &env).await
console::run(&iroh, &env).await
})
.await
} else {
let iroh = iroh_quic_connect(rt).await.context("rpc connect")?;
let env = ConsoleEnv::for_console()?;
repl::run(&iroh, &env).await
console::run(&iroh, &env).await
}
}
Commands::Rpc(command) => {
Expand Down
File renamed without changes.

0 comments on commit 7d724d1

Please sign in to comment.