blob: 1cee16ea94960ecf5d695608c7c0d6787f1b64fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use schist_models::{account::Account, datetime_utc::DatetimeUtc};
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: DatetimeUtc::now(),
}
}
|