waitup 1.0.0

Wait for TCP ports and HTTP endpoints to be available. Essential for Docker, K8s, and CI/CD pipelines to ensure services are ready before proceeding.
Documentation
1
2
3
4
5
6
mod cli;

#[tokio::main]
async fn main() {
    std::process::exit(cli::run().await);
}