devops-armory 0.6.10

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

#[derive(Serialize, Deserialize, Default,Debug)]
pub struct SqlDb {
    pub charset: String,
    pub collation: String,
    pub instance: String,
    pub project: String,
    pub name: String
}