blob: 1547eb7b08a75d9b72e6f123994c5488597ba9f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use schist_models::{account::Account, date_utc::DateUtc};
use schist_traits::nowlike::Nowlike;
pub fn make_fake_account(id: i32) -> Account {
Account {
id,
name: String::from("Joe Bloggs"),
opening_balance: 0,
opening_date: DateUtc::now(),
}
}
|