diff --git a/back/src/main.rs b/back/src/main.rs index f17e20c..f0a5196 100644 --- a/back/src/main.rs +++ b/back/src/main.rs @@ -9,7 +9,6 @@ async fn main() -> Result<(), std::io::Error> { HttpServer::new(|| { App::new() .service(hello) - .service(get_articles) .service(Files::new("/", "./public").index_file("index.html")) }) .bind(("0.0.0.0", 8080))?