From 39c6673bed9c280c2a520b4875c84a036ee834c2 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Mon, 21 Mar 2022 20:04:36 -0400 Subject: [PATCH] Rustfmt && close connection --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 603cc8d..514ebc9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -121,6 +121,7 @@ async fn main() -> eyre::Result<()> { add_monster(&pool, &monster).await?; } + pool.close().await; Ok(()) }