feat: fmt

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-07-29 23:54:29 +02:00
parent 2edb804d8d
commit 51115dc7fd
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
2 changed files with 1 additions and 2 deletions

View File

@ -157,7 +157,7 @@ impl Command {
// 2a. if not existing use default.
// 2b. if not in a git repo abort. (unless --no-vcs is turned added)
let _config = self.get_config(&current_dir, stdin)?;
let git_client = self.get_git(&current_dir)?;
let _git_client = self.get_git(&current_dir)?;
// 3. Create gitea client and do a health check
// 4. Fetch git tags for the current repository

View File

@ -4,7 +4,6 @@ pub mod gitea_client;
pub mod ui;
use command::Command;
use ui::ConsoleUi;
#[tokio::main]
async fn main() -> anyhow::Result<()> {