style(rust): combine multiple use declarations in main.rs
This commit is contained in:
@@ -2,12 +2,10 @@ use clap::Parser;
|
|||||||
use tracing::{Level, event};
|
use tracing::{Level, event};
|
||||||
|
|
||||||
mod args;
|
mod args;
|
||||||
use args::CommandArgs;
|
use args::{ActionType, CommandArgs};
|
||||||
|
|
||||||
mod config;
|
mod config;
|
||||||
|
|
||||||
use crate::args::ActionType;
|
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
let args = CommandArgs::parse();
|
let args = CommandArgs::parse();
|
||||||
|
|||||||
Reference in New Issue
Block a user