| 4 | use crate::prelude::*; |
| 5 | |
| 6 | pub struct CompleteRegistration<'s> { |
| 7 | login: &'s str, |
| 8 | user: &'s user::Row, |
| 9 | } |
| 10 | |
| 11 | impl<'s> CompleteRegistration<'s> { |
| 12 | pub fn new(user: &'s user::Row, login: &'s str) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected