1
2
3
4
5
6
7
pub mod operations;

#[derive(Debug, Clone, PartialEq)]
pub struct Account {
    pub sku_name: String,
    pub kind: String,
}