fluentci-types 0.1.8

Programmable CI/CD engine without Containers, built on top of Nix ❄️
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize)]
pub struct File {
    pub id: String,
    pub path: String,
}

#[derive(Serialize, Deserialize)]
pub struct Chmod {
    pub path: String,
    pub mode: String,
}