devops-armory 0.6.1

Library to make DevOps work easier, based on russh and actix.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde_derive::{Serialize, Deserialize};

#[derive(Deserialize, Serialize, Default, Debug)]
pub struct CreateSSL {
    pub name: String,
    pub managed: DomainsManaged,
    pub r#type: String,
}

#[derive(Deserialize, Serialize, Default, Debug)]
pub struct DomainsManaged {
    pub domains: Vec<String>,
}