()
| 14 | use tracing::info; |
| 15 | |
| 16 | fn build_client() -> Result<Client> { |
| 17 | Ok(Client::builder() |
| 18 | .timeout(std::time::Duration::from_secs(600)) |
| 19 | .build()?) |
| 20 | } |
| 21 | |
| 22 | // ─── Tag listing ──────────────────────────────────────────────────────────── |
| 23 |
no test coverage detected