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
use serde::{Deserialize, Serialize};

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

#[derive(Serialize, Deserialize, Default, Clone)]
pub struct NixArgs {
    pub impure: bool,
}