From d22d3a71c84d43331c64631b2e2a885fc773a6a6 Mon Sep 17 00:00:00 2001 From: xomf Date: Sat, 23 Mar 2024 16:06:04 -0400 Subject: [PATCH] silly --- src/public/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/mod.rs b/src/public/mod.rs index 8d27852..e7620ea 100644 --- a/src/public/mod.rs +++ b/src/public/mod.rs @@ -5,7 +5,7 @@ mod templates; use actix_web::{web, App, HttpServer}; pub(crate) async fn start_actix() -> anyhow::Result<()> { - log::info!("Serving an http server at https://0.0.0.0:8080"); + log::info!("Serving an http server at http://0.0.0.0:8080"); HttpServer::new(|| { App::new() .route("/", web::get().to(routes::index))