diff options
Diffstat (limited to 'src/command/mod.rs')
| -rw-r--r-- | src/command/mod.rs | 6 |
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(), } } } |
