refactor: hide accounts.rs constants from public API

This commit is contained in:
link2xt
2023-08-27 19:59:28 +00:00
parent 87ffcaf03e
commit bffe934acc

View File

@@ -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)]