(ctx context.Context, req *PerformPasswordUpdateRequest, res *PerformPasswordUpdateResponse)
| 72 | return err |
| 73 | } |
| 74 | func (t *UserInternalAPITrace) PerformPasswordUpdate(ctx context.Context, req *PerformPasswordUpdateRequest, res *PerformPasswordUpdateResponse) error { |
| 75 | err := t.Impl.PerformPasswordUpdate(ctx, req, res) |
| 76 | util.GetLogger(ctx).Infof("PerformPasswordUpdate req=%+v res=%+v", js(req), js(res)) |
| 77 | return err |
| 78 | } |
| 79 | |
| 80 | func (t *UserInternalAPITrace) PerformDeviceCreation(ctx context.Context, req *PerformDeviceCreationRequest, res *PerformDeviceCreationResponse) error { |
| 81 | err := t.Impl.PerformDeviceCreation(ctx, req, res) |
nothing calls this directly
no test coverage detected