aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index c4b6c49..39212e2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -7,12 +7,14 @@ use whirl::cli::CLI;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
+ // Environment
let matches = CLI::setup();
- // Setup logging
+ // Logging
dotenv::dotenv().ok();
pretty_env_logger::init();
+ // Execution
CLI::execute(matches).await;
Ok(())