]> git.r.bdr.sh - rbdr/blog/blame_incremental - src/command/add_remote.rs
Generate and archive blog, allow publishing
[rbdr/blog] / src / command / add_remote.rs
... / ...
CommitLineData
1use std::io::Result;
2use crate::configuration::Configuration;
3
4pub struct AddRemote;
5
6impl AddRemote {
7 pub fn new() -> Self {
8 AddRemote
9 }
10}
11
12impl super::Command for AddRemote {
13 fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
14 vec![]
15 }
16
17 fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
18 println!("Add Remote: {:?}!", input);
19 return Ok(())
20 }
21
22 fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {
23 vec![]
24 }
25
26 fn command(&self) -> &'static str {
27 "add-remote"
28 }
29
30 fn help(&self) -> &'static str {
31 "<git_url>\t\tAdds or updates a git remote to sync with"
32 }
33}