ZNKHNPSZWLTCB66TGAERWQASV42YOAOPC4CNARPDBKX2ERBX4QQAC
return Err(if Path::new(".env").exists() {
"* Obsolete .env config file found. Please migrate to config.toml."
} else {
"* config.toml is not found."
return Err(match Path::new(".env").exists() {
true => "* Obsolete .env config file found. Please migrate to config.toml.",
false => "* config.toml is not found.",