1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

fix db/basic

This commit is contained in:
Rob Ede
2022-02-06 08:19:35 +00:00
parent 8ae47c8cda
commit a4d43c0ff8
12 changed files with 112 additions and 103 deletions

View File

@ -81,7 +81,7 @@ async fn create_something(
async fn main() -> io::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
log::info!("starting HTTP serer at http://localhost:8080");
log::info!("starting HTTP server at http://localhost:8080");
HttpServer::new(|| {
App::new()

View File

@ -27,7 +27,7 @@ async fn main() -> io::Result<()> {
.await
.expect("Failed to create pool");
log::info!("starting HTTP serer at http://localhost:8080");
log::info!("starting HTTP server at http://localhost:8080");
HttpServer::new(move || {
log::debug!("Constructing the App");