(ctx context.Context, req *QueryAccountByPasswordRequest, res *QueryAccountByPasswordResponse)
| 207 | } |
| 208 | |
| 209 | func (t *UserInternalAPITrace) QueryAccountByPassword(ctx context.Context, req *QueryAccountByPasswordRequest, res *QueryAccountByPasswordResponse) error { |
| 210 | err := t.Impl.QueryAccountByPassword(ctx, req, res) |
| 211 | util.GetLogger(ctx).Infof("QueryAccountByPassword req=%+v res=%+v", js(req), js(res)) |
| 212 | return err |
| 213 | } |
| 214 | |
| 215 | func (t *UserInternalAPITrace) QueryLocalpartForThreePID(ctx context.Context, req *QueryLocalpartForThreePIDRequest, res *QueryLocalpartForThreePIDResponse) error { |
| 216 | err := t.Impl.QueryLocalpartForThreePID(ctx, req, res) |
nothing calls this directly
no test coverage detected