diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-08-30 20:37:08 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-08-30 20:37:08 -0400 |
| commit | 92a7518975c6bc4b2f9b9c6c12c458b24e8cfaf5 (patch) | |
| tree | f0bc1dedad045f360576c169b7482e73f6820eaf /src/main.rs | |
| parent | f26dd0d662d8fc33108d072031329e707f54300b (diff) | |
Store state in sqlite. Default to .hi in the cwd.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs index 43c4e48..d199a74 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,11 +1,9 @@ -use std::io; - use clap::Parser; -use hi::cli::Args; +use hi::cli; #[tokio::main] -async fn main() -> io::Result<()> { - let args = Args::parse(); +async fn main() -> cli::Result<()> { + let args = cli::Args::parse(); args.run().await } |
