WIP: cli: ???
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful

This commit is contained in:
Paul Campbell 2024-06-19 07:03:25 +01:00
parent 2851059fd6
commit 0796af1485

View file

@ -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,7 +45,7 @@ async fn main() {
git_next_server::init(fs);
}
Server::Start => {
git_next_server::start(fs, net, repo).await;
git_next_server::start(fs, net, repo, SLEEP_DURATION).await;
}
},
}