ping-rust 0.1.3

Menu-driven installer and manager for the shoes proxy server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod cli;
mod client;
mod config;
mod installer;
mod menu;
mod operations;
mod self_update;
mod service;
mod utils;

use anyhow::Result;
use clap::Parser;

#[tokio::main]
async fn main() -> Result<()> {
    cli::run(cli::Cli::parse()).await
}