aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/mod.rs
diff options
context:
space:
mode:
authorConrad Ludgate <conradludgate@gmail.com>2022-05-09 07:46:52 +0100
committerGitHub <noreply@github.com>2022-05-09 07:46:52 +0100
commit1d030b9d32f539fd38f5ff3335234c5111c3303f (patch)
tree08619ad238362f66270919902c887c6357404bcd /src/command/mod.rs
parentBump clap from 3.1.15 to 3.1.16 (#392) (diff)
downloadatuin-1d030b9d32f539fd38f5ff3335234c5111c3303f.zip
Importer V3 (#395)
* start of importer refactor * fish * resh * zsh
Diffstat (limited to '')
-rw-r--r--src/command/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command/mod.rs b/src/command/mod.rs
index 953b76ba..c86e76f5 100644
--- a/src/command/mod.rs
+++ b/src/command/mod.rs
@@ -19,11 +19,11 @@ pub enum AtuinCmd {
}
impl AtuinCmd {
- pub async fn run(self) -> Result<()> {
+ pub fn run(self) -> Result<()> {
match self {
- Self::Client(client) => client.run().await,
+ Self::Client(client) => client.run(),
#[cfg(feature = "server")]
- Self::Server(server) => server.run().await,
+ Self::Server(server) => server.run(),
}
}
}