]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/help.rs
Add part of the implementation for add
[rbdr/blog] / src / command / help.rs
index 7ddcba8f5b9d6b275b1bdf0a8f625380d3f0d65f..8d2a2c0adb7ee111d0280056e83448a5d4991224 100644 (file)
@@ -1,5 +1,6 @@
 use std::io::Result;
 use super::available_commands;
+use crate::configuration::Configuration;
 
 pub struct Help;
 
@@ -14,7 +15,7 @@ impl super::Command for Help {
         vec![]
     }
 
-    fn execute(&self, _: Option<&String>) -> Result<()> {
+    fn execute(&self, _: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
         let commands = available_commands();
         println!("Usage:");
         println!("");