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)]