(ctx context.Context, req *PerformUpdateDisplayNameRequest, res *struct{})
| 201 | } |
| 202 | |
| 203 | func (t *UserInternalAPITrace) SetDisplayName(ctx context.Context, req *PerformUpdateDisplayNameRequest, res *struct{}) error { |
| 204 | err := t.Impl.SetDisplayName(ctx, req, res) |
| 205 | util.GetLogger(ctx).Infof("SetDisplayName req=%+v res=%+v", js(req), js(res)) |
| 206 | return err |
| 207 | } |
| 208 | |
| 209 | func (t *UserInternalAPITrace) QueryAccountByPassword(ctx context.Context, req *QueryAccountByPasswordRequest, res *QueryAccountByPasswordResponse) error { |
| 210 | err := t.Impl.QueryAccountByPassword(ctx, req, res) |
nothing calls this directly
no test coverage detected