| 115 | |
| 116 | #[derive(clap::Parser, Debug)] |
| 117 | struct CliArguments { |
| 118 | listen_addr: String, |
| 119 | listen_port: u16, |
| 120 | forward_addr: String, |
| 121 | forward_port: u16, |
| 122 | } |
| 123 | |
| 124 | #[actix_web::main] |
| 125 | async fn main() -> io::Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected