9 lines
195 B
Rust
Raw Normal View History

2024-03-28 11:42:08 -04:00
use email_newsletter_api::run;
#[tokio::main]
async fn main() -> Result<(), std::io::Error>{
// Move the error up the call stack
// otherwise await for the HttpServer
run()?.await
2024-03-23 19:04:25 -04:00
}