(path: &str, cert: &str)
| 223 | } |
| 224 | |
| 225 | fn write_cert(path: &str, cert: &str) -> Result<()> { |
| 226 | info!("Writing cert to file: {path}"); |
| 227 | safe_write::safe_write(path, cert)?; |
| 228 | Ok(()) |
| 229 | } |
| 230 | |
| 231 | #[rocket::main] |
| 232 | async fn main() -> Result<()> { |
no outgoing calls
no test coverage detected