diff --git a/backend/src/main.rs b/backend/src/main.rs index 24902b5..d3e8e82 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -2,7 +2,7 @@ use axum::{routing::get, Router}; #[tokio::main] async fn main() { - let app = Router::new().route("/", get(|| async { "Hello, world!" })); + let app = Router::new().route("/", get(|| async { "Hello, world! This is Jokkit." })); axum::Server::bind(&"0.0.0.0:3000".parse().unwrap()) .serve(app.into_make_service())