| 15 | |
| 16 | #[derive(Default)] |
| 17 | pub struct AuthAggregate { |
| 18 | pub account: Account, |
| 19 | pub token_stat: TokenStat, |
| 20 | pub events: VecDeque<Box<dyn Message>>, //Event |
| 21 | } |
| 22 | |
| 23 | pub struct AuthAggregateBuilder(AuthAggregate); |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected