( ctx context.Context, req *PerformInviteRequest, res *PerformInviteResponse, )
| 41 | } |
| 42 | |
| 43 | func (t *RoomserverInternalAPITrace) PerformInvite( |
| 44 | ctx context.Context, |
| 45 | req *PerformInviteRequest, |
| 46 | res *PerformInviteResponse, |
| 47 | ) error { |
| 48 | util.GetLogger(ctx).Infof("PerformInvite req=%+v res=%+v", js(req), js(res)) |
| 49 | return t.Impl.PerformInvite(ctx, req, res) |
| 50 | } |
| 51 | |
| 52 | func (t *RoomserverInternalAPITrace) PerformPeek( |
| 53 | ctx context.Context, |
nothing calls this directly
no test coverage detected