(ctx context.Context, req *PerformSetAvatarURLRequest, res *PerformSetAvatarURLResponse)
| 183 | } |
| 184 | |
| 185 | func (t *UserInternalAPITrace) SetAvatarURL(ctx context.Context, req *PerformSetAvatarURLRequest, res *PerformSetAvatarURLResponse) error { |
| 186 | err := t.Impl.SetAvatarURL(ctx, req, res) |
| 187 | util.GetLogger(ctx).Infof("SetAvatarURL req=%+v res=%+v", js(req), js(res)) |
| 188 | return err |
| 189 | } |
| 190 | |
| 191 | func (t *UserInternalAPITrace) QueryNumericLocalpart(ctx context.Context, res *QueryNumericLocalpartResponse) error { |
| 192 | err := t.Impl.QueryNumericLocalpart(ctx, res) |
nothing calls this directly
no test coverage detected