(ctx context.Context, req *QueryNotificationsRequest, res *QueryNotificationsResponse)
| 177 | return err |
| 178 | } |
| 179 | func (t *UserInternalAPITrace) QueryNotifications(ctx context.Context, req *QueryNotificationsRequest, res *QueryNotificationsResponse) error { |
| 180 | err := t.Impl.QueryNotifications(ctx, req, res) |
| 181 | util.GetLogger(ctx).Infof("QueryNotifications req=%+v res=%+v", js(req), js(res)) |
| 182 | return err |
| 183 | } |
| 184 | |
| 185 | func (t *UserInternalAPITrace) SetAvatarURL(ctx context.Context, req *PerformSetAvatarURLRequest, res *PerformSetAvatarURLResponse) error { |
| 186 | err := t.Impl.SetAvatarURL(ctx, req, res) |
nothing calls this directly
no test coverage detected