format code

This commit is contained in:
qiumiaomiao 2024-10-09 14:46:53 +08:00
parent 2a341f5826
commit f1273030f4
1 changed files with 2 additions and 5 deletions

View File

@ -1,3 +1,4 @@
use crate::structs::ZinoToml;
use clap::Parser;
use git2::{FetchOptions, Remote, Repository, ResetType};
use humantime_serde::re::humantime::format_duration;
@ -8,14 +9,10 @@ use std::{
process::{Child, Command},
};
use tokio::io::AsyncWriteExt;
use tracing::{error, info, warn};
use tokio_stream::StreamExt;
use tracing::{error, info, warn};
use zino_core::error::Error;
use crate::structs::ZinoToml;
/// Deploy a zino project.
#[derive(Parser)]
#[clap(name = "deploy")]