From bffe934accbefb7c3deffc14bcead1acaf08fbe4 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 27 Aug 2023 19:59:28 +0000 Subject: [PATCH] refactor: hide accounts.rs constants from public API --- src/accounts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounts.rs b/src/accounts.rs index 9c214b371..77770049f 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -296,10 +296,10 @@ impl Accounts { } /// Configuration file name. -pub const CONFIG_NAME: &str = "accounts.toml"; +const CONFIG_NAME: &str = "accounts.toml"; /// Database file name. -pub const DB_NAME: &str = "dc.db"; +const DB_NAME: &str = "dc.db"; /// Account manager configuration file. #[derive(Debug, Clone, PartialEq)]