1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use std::process::Command;

pub struct VoteCommand {
    command: Command,
}

impl VoteCommand {
    pub fn new(command: Command) -> Self {
        Self { command }
    }

    pub fn account_votes(
        mut self,
        account: impl Into<String>,
        voteplan: impl Into<String>,
        host: impl Into<String>,
    ) -> Self {
        self.command
            .arg("account-votes")
            .arg("--host")
            .arg(host.into())
            .arg("--account-id")
            .arg(account.into())
            .arg("--vote-plan-id")
            .arg(voteplan.into());
        self
    }

    pub fn build(self) -> Command {
        println!("{:?}", self.command);
        self.command
    }
}