فهرست منبع

Remove old TODOs

Josh Bicking 4 سال پیش
والد
کامیت
059baad443
2فایلهای تغییر یافته به همراه0 افزوده شده و 6 حذف شده
  1. 0 1
      src/config.rs
  2. 0 5
      src/main.rs

+ 0 - 1
src/config.rs

@@ -61,7 +61,6 @@ pub fn load_config_file(config_file_path: String) -> Config {
         }
     };
 
-    // TODO Use serde instead
     let mut config_str = String::new();
     match config_file.read_to_string(&mut config_str) {
         Ok(_) => {

+ 0 - 5
src/main.rs

@@ -8,11 +8,6 @@ use std::process::{exit};
 
 fn main() {
 
-    // TODO parse args
-    // Pass (optional) config file loc from them
-    // Get config
-    // Overlay other options from config struct
-
     // Argument handling
     let mut config_location = config::default_config_file();
     let config_help = format!("Config file location, default {}", config_location);