aboutsummaryrefslogtreecommitdiff
path: root/src/command/generate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/generate.rs')
-rw-r--r--src/command/generate.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/generate.rs b/src/command/generate.rs
index 59babd5..fac73ff 100644
--- a/src/command/generate.rs
+++ b/src/command/generate.rs
@@ -1,4 +1,5 @@
use std::io::Result;
+use crate::configuration::Configuration;
pub struct Generate;
@@ -13,7 +14,7 @@ impl super::Command for Generate {
vec![]
}
- fn execute(&self, input: Option<&String>) -> Result<()> {
+ fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
println!("GENERATE! {:?}", input);
return Ok(())
}