summaryrefslogtreecommitdiff
path: root/ofborg/tickborg/src/message/buildlogmsg.rs
blob: 1aed51829e2000846afedda6e8d5217ae95c522b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
pub struct BuildLogMsg {
    pub system: String,
    pub identity: String,
    pub attempt_id: String,
    pub line_number: u64,
    pub output: String,
}

#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
pub struct BuildLogStart {
    pub system: String,
    pub identity: String,
    pub attempt_id: String,
    pub attempted_attrs: Option<Vec<String>>,
    pub skipped_attrs: Option<Vec<String>>,
}