소스 검색

Accept config path as argument

Thomas Dy 9 년 전
부모
커밋
26098bdef9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/main.rs

+ 3 - 1
src/main.rs

@@ -8,12 +8,14 @@ mod store;
 
 use comm::{Channel, Message};
 use config::Config;
+use std::env;
 use std::sync::Arc;
 use std::sync::mpsc;
 use std::thread;
 
 fn main() {
-    let cfg = config::load("./panel.toml");
+    let config_path = env::args().nth(1).unwrap_or("./panel.toml".to_string());
+    let cfg = config::load(&config_path);
     let cfg = Arc::new(cfg);
 
     let (tx, rx) = mpsc::channel::<Message>();