From ad160b2254ab73a96caeefbe285ad475a33d13cf Mon Sep 17 00:00:00 2001 From: Ifeanyichukwu Date: Tue, 14 May 2024 23:14:46 +0100 Subject: [PATCH] chore(cmd): organize the imports properly --- coffee_cmd/src/cmd.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/coffee_cmd/src/cmd.rs b/coffee_cmd/src/cmd.rs index 5521957..30db36d 100644 --- a/coffee_cmd/src/cmd.rs +++ b/coffee_cmd/src/cmd.rs @@ -1,8 +1,10 @@ //! Coffee command line arguments definition. +use std::fmt::Display; + use clap::{Parser, Subcommand}; + use coffee_lib::error; use coffee_lib::errors::CoffeeError; -use std::fmt::Display; /// Coffee main command line definition for the command line tools. #[derive(Debug, Parser)]