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
pub mod dialoguers;
pub mod render;
pub mod utils;

#[derive(Debug)]
pub struct ConfiguresSelected {
    pub target_tag: String,
}

impl ConfiguresSelected {
    pub fn new() -> Self {
        Self {
            target_tag: String::from("web"),
        }
    }

    pub fn set_target_tag(&mut self, value: &str) {
        self.target_tag = value.to_string();
    }
}

impl Default for ConfiguresSelected {
    fn default() -> Self {
        Self::new()
    }
}