diff options
| author | Conrad Ludgate <conradludgate@gmail.com> | 2022-05-09 07:46:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-09 07:46:52 +0100 |
| commit | 1d030b9d32f539fd38f5ff3335234c5111c3303f (patch) | |
| tree | 08619ad238362f66270919902c887c6357404bcd /src/main.rs | |
| parent | Bump clap from 3.1.15 to 3.1.16 (#392) (diff) | |
| download | atuin-1d030b9d32f539fd38f5ff3335234c5111c3303f.zip | |
Importer V3 (#395)
* start of importer refactor
* fish
* resh
* zsh
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs index 00028cd9..5d43cc72 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,12 +25,11 @@ struct Atuin { } impl Atuin { - async fn run(self) -> Result<()> { - self.atuin.run().await + fn run(self) -> Result<()> { + self.atuin.run() } } -#[tokio::main] -async fn main() -> Result<()> { - Atuin::parse().run().await +fn main() -> Result<()> { + Atuin::parse().run() } |
