WIP: cli: ???
This commit is contained in:
parent
0f8320f425
commit
1135d48c97
1 changed files with 4 additions and 2 deletions
|
@ -8,6 +8,9 @@ use std::path::PathBuf;
|
|||
use clap::Parser;
|
||||
use kxio::{fs, network::Network};
|
||||
|
||||
/// How long to wait between rechecking the status of a repo.
|
||||
const SLEEP_DURATION: std::time::Duration = std::time::Duration::from_secs(10);
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
#[clap(version = clap::crate_version!(), author = clap::crate_authors!(), about = clap::crate_description!())]
|
||||
struct Commands {
|
||||
|
@ -42,8 +45,7 @@ async fn main() {
|
|||
git_next_server::init(fs);
|
||||
}
|
||||
Server::Start => {
|
||||
let sleep_duration = std::time::Duration::from_secs(10);
|
||||
git_next_server::start(fs, net, repo, sleep_duration).await;
|
||||
git_next_server::start(fs, net, repo, SLEEP_DURATION).await;
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue