diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-09 20:54:17 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-09 20:54:17 +0100 |
commit | dbe8af8e64a8a0ce55672617ed240066adf88300 (patch) | |
tree | c88f6383d24d5bd9149820040e58fe960481207e /src | |
parent | 032f031f014c30049340bbb9f7d708bbf558ac3f (diff) |
feat: add pool on web server
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 594491f..0ef80bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,20 @@ +mod config; + use actix_web::{web, App, HttpResponse, HttpServer}; +use dotenv::dotenv; +use tokio_postgres::NoTls; + +use crate::config::Config; + #[actix_rt::main] async fn main() -> std::io::Result<()> { - HttpServer::new(|| { - App::new().service( + dotenv().ok(); + + let config = Config::from_env().unwrap(); + let pool = config.pg.create_pool(NoTls).unwrap(); + + HttpServer::new(move || { + App::new().data(pool.clone()).service( web::resource("/") .to(|| HttpResponse::Ok().body("Hello from Rust!")), ) |