bhcli

"Strange's fork of n0tr1v's bhcli (onion)"
git clone https://git.dasho.dev/Strange/bhcli.git
Log | Files | Refs | README

commit b3c5406ba5c21455452fe6eb4628a049afed3609
parent 467c95e8a49db6f70c656d21827d18e30a292cf3
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Mon, 27 Mar 2023 19:45:43 -0700

print out location of config file

Diffstat:
Msrc/main.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -2078,6 +2078,7 @@ fn main() -> Result<()> { let mut opts: Opts = Opts::parse(); // Configs file + println!("Config path: {:?}", confy::get_configuration_file_path("bhcli", None)?); let cfg: MyConfig = confy::load("bhcli", None)?; if opts.dkf_api_key.is_none() { opts.dkf_api_key = cfg.dkf_api_key;