(ctx context.Context, req *QueryLocalpartForThreePIDRequest, res *QueryLocalpartForThreePIDResponse)
| 213 | } |
| 214 | |
| 215 | func (t *UserInternalAPITrace) QueryLocalpartForThreePID(ctx context.Context, req *QueryLocalpartForThreePIDRequest, res *QueryLocalpartForThreePIDResponse) error { |
| 216 | err := t.Impl.QueryLocalpartForThreePID(ctx, req, res) |
| 217 | util.GetLogger(ctx).Infof("QueryLocalpartForThreePID req=%+v res=%+v", js(req), js(res)) |
| 218 | return err |
| 219 | } |
| 220 | |
| 221 | func (t *UserInternalAPITrace) QueryThreePIDsForLocalpart(ctx context.Context, req *QueryThreePIDsForLocalpartRequest, res *QueryThreePIDsForLocalpartResponse) error { |
| 222 | err := t.Impl.QueryThreePIDsForLocalpart(ctx, req, res) |
nothing calls this directly
no test coverage detected