removed tokio & other unused dependencies

This commit is contained in:
sreedev
2023-01-26 14:07:50 -05:00
parent ef1e9a1fce
commit f0dbf05705
4 changed files with 5 additions and 95 deletions

View File

@@ -9,7 +9,6 @@ use anyhow::Result;
use app::App;
use clap::Parser;
#[tokio::main]
async fn main() -> Result<()> {
fn main() -> Result<()> {
App::init(&params::Params::parse())
}