mailApp/src/main.rs
Nick Bland 3c97b96cf1 Chapter 3.9
+ Update tests to incorporate new structure.
+ Adjust tests to connect to database
2023-09-04 21:47:49 +10:00

12 lines
394 B
Rust

use mail_app::configuration::get_configuration;
use mail_app::startup::run;
use std::net::TcpListener;
#[tokio::main]
async fn main() -> Result<(), std::io::Error> {
let configuration = get_configuration().expect("Failed to read config");
let address = format!("127.0.0.1:{}", configuration.application_port);
let listener = TcpListener::bind(address)?;
run(listener)?.await
}