A HTTP web server using the Actix-Web framework. This simple app responds with "Hello, Rust Web!" and introduces routing, handlers, and basic server setup.
Open http://127.0.0.1:8080 – You’ll see:
#[get("/")]: Registers a handler for GET requests at /
HttpResponse::Ok().body(...): Returns a plain response
HttpServer::new(): Starts the web server