devops-armory 0.7.2

Library to make DevOps work easier, based on russh and actix.
Documentation
use serde::*;
use serde::Deserialize as SerDel;
use serde_query::Deserialize;

#[derive(Debug, Deserialize, Serialize)]
pub struct Pod {
    #[query(".items.[].metadata.name")]
    pub hostname: Vec<String>,
}

#[derive(Serialize)]
pub struct Log {
    pub google_project_id: String,
    pub project_id: String,
    pub region: String,
    pub host: String,
    pub time: String,
    pub message: String,
}

#[derive(Serialize, Eq, Hash, PartialEq, Clone, Debug, SerDel)]
pub struct Notification {
    pub channel: String,
    pub username: String,
    pub text: String,
    pub icon_emoji: String,
}