1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use chekov::prelude::*;
use serde::Serialize;
use sqlx::PgPool;
use uuid::Uuid;

use crate::commands::*;

mod aggregate;
mod projector;
mod repository;

pub use aggregate::*;
pub use projector::*;
pub use repository::*;

#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum AccountStatus {
    Initialized,
    Active,
}

#[derive(Debug, Clone, chekov::Aggregate, Serialize)]
#[aggregate(identity = "account")]
pub struct Account {
    pub account_id: Option<Uuid>,
    pub name: String,
    pub status: AccountStatus,
    pub balance: i64,
}

impl std::default::Default for Account {
    fn default() -> Self {
        Self {
            account_id: None,
            name: String::new(),
            status: AccountStatus::Initialized,
            balance: 0,
        }
    }
}