From 5881b5f0587c0dac32feff99bf9ce6333b3e71a3 Mon Sep 17 00:00:00 2001 From: Radical Date: Mon, 28 Apr 2025 23:46:34 +0200 Subject: [PATCH] feat: add database name option --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index b8f9955..a9f720d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -13,6 +13,7 @@ pub struct Database { username: String, password: String, hostname: String, + database: String, port: u16 }