diff --git a/src/main.rs b/src/main.rs index bfaf60e..b7d19d3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,6 +64,14 @@ async fn main() -> eyre::Result<()> { lock, }); + info!( + "Serving on {}", + bind.iter() + .map(ToString::to_string) + .collect::>() + .join(", ") + ); + // TODO: Crate search, owner endpoints, /me endpoint let router = Router::new() .route("/index/config.json", get(get_index_config))