Skip to main content

devops_armory/cloud/gcp/sql/database/
models.rs

1use serde_derive::{Serialize, Deserialize};
2
3#[derive(Serialize, Deserialize, Default,Debug)]
4pub struct SqlDb {
5    pub charset: String,
6    pub collation: String,
7    pub instance: String,
8    pub project: String,
9    pub name: String
10}