From f69d418ac6c8cd8c66863550a3c8aef0641d977b Mon Sep 17 00:00:00 2001 From: missing Date: Thu, 8 Sep 2022 13:14:43 -0500 Subject: [PATCH] change config location --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 8d2063e..42ce185 100644 --- a/src/main.rs +++ b/src/main.rs @@ -133,7 +133,7 @@ pub struct Config { #[tokio::main] async fn main() -> Result<(), BoxDynError> { let config = toml::from_str::( - &fs::read_to_string("registry.toml") + &fs::read_to_string("/etc/warehouse/warehouse.toml") .await .expect("Config file missing"), )