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