| 71 | var _ errutil.NotFound = (*ErrTwoFactorNotFound)(nil) |
| 72 | |
| 73 | type ErrTwoFactorNotFound struct { |
| 74 | args errutil.Args |
| 75 | } |
| 76 | |
| 77 | func IsErrTwoFactorNotFound(err error) bool { |
| 78 | return errors.As(err, &ErrTwoFactorNotFound{}) |
nothing calls this directly
no outgoing calls
no test coverage detected