summaryrefslogtreecommitdiff
path: root/rust/actualbudget_queries/tests/common/account_names.rs
blob: 1abee4b3f2d481cd1708118b0e3cf771e6fb4f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub const ACCOUNT_NAMES: &[&'static str] = &[
    "My bank account",
    "My cash account",
    "Category transfers",
];

pub struct AccountNamesDict {
    pub bank_account: &'static str,
    pub cash_account: &'static str,
    pub transfers_account: &'static str,
}

pub const ACCOUNT_NAMES_DICT: AccountNamesDict = AccountNamesDict {
    bank_account: ACCOUNT_NAMES[0],
    cash_account: ACCOUNT_NAMES[1],
    transfers_account: ACCOUNT_NAMES[2],
};