summaryrefslogtreecommitdiffstats
path: root/src/db/models/artifact.rs
blob: 92b6531589cdfcc599ff7e9d3a011ce234c00035 (plain)
1
2
3
4
5
6
7
#[derive(Queryable)]
pub struct Artifact {
    pub id: i32,
    pub path: String,
    pub released: bool,
}